Skip to content

Commit

Permalink
Merge pull request #2896 from Agoric/release-20210416T015958
Browse files Browse the repository at this point in the history
chore(release): publish 2.17.2
  • Loading branch information
michaelfig authored Apr 17, 2021
2 parents 1797a3e + 7a1e730 commit 975521a
Show file tree
Hide file tree
Showing 77 changed files with 558 additions and 341 deletions.
83 changes: 0 additions & 83 deletions .github/workflows/test-dapp-encouragement.yml

This file was deleted.

11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.17.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-04-16)


### Bug Fixes

* harmonise fake-chain and actual chain genesis block height ([8903f3b](https://github.com/Agoric/agoric-sdk/commit/8903f3b861b9c1bb92e551875ff2ae020c11b00f))





## [2.17.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-04-14)


Expand Down
8 changes: 8 additions & 0 deletions golang/cosmos/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.25.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-04-16)

**Note:** Version bump only for package @agoric/cosmos





## [0.25.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-04-14)

**Note:** Version bump only for package @agoric/cosmos
Expand Down
5 changes: 2 additions & 3 deletions golang/cosmos/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -572,12 +572,11 @@ func (app *GaiaApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci
stakingParams.HistoricalEntries = 10000
app.StakingKeeper.SetParams(ctx, stakingParams)

// Agoric tweak: wait until the genesis time has happened.
// Agoric: report the genesis time explicitly.
genTime := req.GetTime()
if genTime.After(time.Now()) {
d := time.Until(genTime)
stdlog.Printf("Sleeping %s until genesis time %s\n", d, genTime)
time.Sleep(d)
stdlog.Printf("Genesis time %s is in %s\n", genTime, d)
}

return res
Expand Down
2 changes: 1 addition & 1 deletion golang/cosmos/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agoric/cosmos",
"version": "0.25.1",
"version": "0.25.2",
"description": "Connect JS to the Cosmos blockchain SDK",
"parsers": {
"js": "mjs"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agoric/sdk",
"version": "2.17.1",
"version": "2.17.2",
"private": true,
"useWorkspaces": true,
"workspaces": [
Expand Down
8 changes: 8 additions & 0 deletions packages/ERTP/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.10.6](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-04-16)

**Note:** Version bump only for package @agoric/ertp





## [0.10.5](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-04-14)

**Note:** Version bump only for package @agoric/ertp
Expand Down
24 changes: 12 additions & 12 deletions packages/ERTP/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agoric/ertp",
"version": "0.10.5",
"version": "0.10.6",
"description": "Electronic Rights Transfer Protocol (ERTP). A smart contract framework for exchanging electronic rights",
"parsers": {
"js": "mjs"
Expand Down Expand Up @@ -42,20 +42,20 @@
},
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
"dependencies": {
"@agoric/assert": "^0.2.6",
"@agoric/eventual-send": "^0.13.8",
"@agoric/import-manager": "^0.2.8",
"@agoric/marshal": "^0.4.5",
"@agoric/assert": "^0.2.7",
"@agoric/eventual-send": "^0.13.9",
"@agoric/import-manager": "^0.2.9",
"@agoric/marshal": "^0.4.6",
"@agoric/nat": "^4.0.0",
"@agoric/notifier": "^0.3.8",
"@agoric/promise-kit": "^0.2.7",
"@agoric/same-structure": "^0.1.7",
"@agoric/store": "^0.4.8"
"@agoric/notifier": "^0.3.9",
"@agoric/promise-kit": "^0.2.8",
"@agoric/same-structure": "^0.1.8",
"@agoric/store": "^0.4.9"
},
"devDependencies": {
"@agoric/bundle-source": "^1.3.1",
"@agoric/install-ses": "^0.5.7",
"@agoric/swingset-vat": "^0.16.1",
"@agoric/bundle-source": "^1.3.2",
"@agoric/install-ses": "^0.5.8",
"@agoric/swingset-vat": "^0.16.2",
"ava": "^3.12.1",
"esm": "^3.2.25",
"nyc": "^15.1.0"
Expand Down
8 changes: 8 additions & 0 deletions packages/SwingSet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.16.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-04-16)

**Note:** Version bump only for package @agoric/swingset-vat





## [0.16.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-04-14)

**Note:** Version bump only for package @agoric/swingset-vat
Expand Down
28 changes: 14 additions & 14 deletions packages/SwingSet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agoric/swingset-vat",
"version": "0.16.1",
"version": "0.16.2",
"description": "Vat/Container Launcher",
"parsers": {
"js": "mjs"
Expand All @@ -27,29 +27,29 @@
"lint:eslint": "eslint '**/*.js'"
},
"devDependencies": {
"@agoric/install-metering-and-ses": "^0.2.7",
"@agoric/install-metering-and-ses": "^0.2.8",
"@agoric/ses-ava": "^0.1.1",
"ava": "^3.12.1",
"nyc": "^15.1.0"
},
"dependencies": {
"@agoric/assert": "^0.2.6",
"@agoric/assert": "^0.2.7",
"@agoric/babel-parser": "^7.6.4",
"@agoric/bundle-source": "^1.3.1",
"@agoric/captp": "^1.7.7",
"@agoric/eventual-send": "^0.13.8",
"@agoric/import-bundle": "^0.2.8",
"@agoric/install-ses": "^0.5.7",
"@agoric/marshal": "^0.4.5",
"@agoric/bundle-source": "^1.3.2",
"@agoric/captp": "^1.7.8",
"@agoric/eventual-send": "^0.13.9",
"@agoric/import-bundle": "^0.2.9",
"@agoric/install-ses": "^0.5.8",
"@agoric/marshal": "^0.4.6",
"@agoric/nat": "^4.0.0",
"@agoric/notifier": "^0.3.8",
"@agoric/promise-kit": "^0.2.7",
"@agoric/store": "^0.4.8",
"@agoric/notifier": "^0.3.9",
"@agoric/promise-kit": "^0.2.8",
"@agoric/store": "^0.4.9",
"@agoric/swing-store-simple": "^0.3.6",
"@agoric/tame-metering": "^1.3.6",
"@agoric/transform-eventual-send": "^1.4.6",
"@agoric/transform-metering": "^1.4.6",
"@agoric/xsnap": "^0.5.2",
"@agoric/transform-metering": "^1.4.7",
"@agoric/xsnap": "^0.5.3",
"@babel/core": "^7.5.0",
"@babel/generator": "^7.6.4",
"@endo/base64": "^0.1.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/agoric-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.12.11](https://github.com/Agoric/agoric-sdk/compare/[email protected]@0.12.11) (2021-04-16)

**Note:** Version bump only for package agoric





## [0.12.10](https://github.com/Agoric/agoric-sdk/compare/[email protected]@0.12.10) (2021-04-14)


Expand Down
14 changes: 7 additions & 7 deletions packages/agoric-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agoric",
"version": "0.12.10",
"version": "0.12.11",
"description": "Manage the Agoric Javascript smart contract platform",
"parsers": {
"js": "mjs"
Expand All @@ -20,17 +20,17 @@
"lint-fix": "eslint --fix '**/*.{js,jsx}'"
},
"devDependencies": {
"@agoric/swingset-vat": "^0.16.1",
"@agoric/swingset-vat": "^0.16.2",
"ava": "^3.12.1",
"nyc": "^15.1.0",
"tmp": "^0.1.0"
},
"dependencies": {
"@agoric/assert": "^0.2.6",
"@agoric/bundle-source": "^1.3.1",
"@agoric/captp": "^1.7.7",
"@agoric/install-ses": "^0.5.7",
"@agoric/promise-kit": "^0.2.7",
"@agoric/assert": "^0.2.7",
"@agoric/bundle-source": "^1.3.2",
"@agoric/captp": "^1.7.8",
"@agoric/install-ses": "^0.5.8",
"@agoric/promise-kit": "^0.2.8",
"@agoric/swing-store-simple": "^0.3.6",
"@iarna/toml": "^2.2.3",
"anylogger": "^0.21.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/assert/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.2.7](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-04-16)

**Note:** Version bump only for package @agoric/assert





## [0.2.6](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-04-07)

**Note:** Version bump only for package @agoric/assert
Expand Down
4 changes: 2 additions & 2 deletions packages/assert/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agoric/assert",
"version": "0.2.6",
"version": "0.2.7",
"description": "Assert expression support that protects sensitive data",
"parsers": {
"js": "mjs"
Expand Down Expand Up @@ -35,7 +35,7 @@
},
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
"devDependencies": {
"@agoric/install-ses": "^0.5.6",
"@agoric/install-ses": "^0.5.8",
"ava": "^3.12.1",
"esm": "^3.2.25",
"nyc": "^15.1.0"
Expand Down
8 changes: 8 additions & 0 deletions packages/bundle-source/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.3.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-04-16)

**Note:** Version bump only for package @agoric/bundle-source





## [1.3.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-04-07)

**Note:** Version bump only for package @agoric/bundle-source
Expand Down
4 changes: 2 additions & 2 deletions packages/bundle-source/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agoric/bundle-source",
"version": "1.3.1",
"version": "1.3.2",
"description": "Create source bundles from ES Modules",
"parsers": {
"js": "mjs"
Expand All @@ -17,7 +17,7 @@
"lint-check-jessie": "eslint -c '.eslintrc-jessie.js' '**/*.js'"
},
"devDependencies": {
"@agoric/install-ses": "^0.5.6",
"@agoric/install-ses": "^0.5.8",
"ava": "^3.12.1",
"nyc": "^15.1.0"
},
Expand Down
8 changes: 8 additions & 0 deletions packages/captp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.7.8](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-04-16)

**Note:** Version bump only for package @agoric/captp





## [1.7.7](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2021-04-14)

**Note:** Version bump only for package @agoric/captp
Expand Down
Loading

0 comments on commit 975521a

Please sign in to comment.