Skip to content

Commit

Permalink
chore(release): publish
Browse files Browse the repository at this point in the history
  • Loading branch information
warner committed Oct 18, 2022
1 parent 87f83be commit 2c812d2
Show file tree
Hide file tree
Showing 54 changed files with 376 additions and 144 deletions.
12 changes: 12 additions & 0 deletions golang/cosmos/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [0.32.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-18)


### Bug Fixes

* actually run the upgrade handler for test ([142b769](https://github.com/Agoric/agoric-sdk/commit/142b7696061e724c5bf25c627b1356610dc5fa75))
* allow test flag for update ([237c56e](https://github.com/Agoric/agoric-sdk/commit/237c56edbf9de28d6947d8f6e482aa554aae02f9))
* init in the right order ([3050d11](https://github.com/Agoric/agoric-sdk/commit/3050d11a9bff53251d9fb7ccfea7cb713fd14ca8))
* use fromVM instead of vm since vm is an import ([131f0db](https://github.com/Agoric/agoric-sdk/commit/131f0db9dfcd46aa04ce7e0b5115fc3735a175fd))



### [0.32.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-08)


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.32.1",
"version": "0.32.2",
"description": "Connect JS to the Cosmos blockchain SDK",
"parsers": {
"js": "mjs"
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.15.3](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-18)

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





### [0.15.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-08)

**Note:** Version bump only for package @agoric/ertp
Expand Down
8 changes: 4 additions & 4 deletions packages/ERTP/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agoric/ertp",
"version": "0.15.2",
"version": "0.15.3",
"description": "Electronic Rights Transfer Protocol (ERTP). A smart contract framework for exchanging electronic rights",
"type": "module",
"main": "src/index.js",
Expand Down Expand Up @@ -40,9 +40,9 @@
"@agoric/assert": "^0.5.1",
"@agoric/nat": "^4.1.0",
"@agoric/notifier": "^0.5.1",
"@agoric/store": "^0.8.2",
"@agoric/swingset-vat": "^0.30.1",
"@agoric/vat-data": "^0.4.2",
"@agoric/store": "^0.8.3",
"@agoric/swingset-vat": "^0.30.2",
"@agoric/vat-data": "^0.4.3",
"@endo/eventual-send": "^0.16.5",
"@endo/far": "^0.2.11",
"@endo/marshal": "^0.7.5",
Expand Down
9 changes: 9 additions & 0 deletions packages/SwingSet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [0.30.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-18)


### Bug Fixes

* **swingset:** only preload maxVatsOnline/2 vats ([ff696dc](https://github.com/Agoric/agoric-sdk/commit/ff696dcc98ac1bc8ca0bbb4acb4339751ba013dd)), closes [#6433](https://github.com/Agoric/agoric-sdk/issues/6433)



### [0.30.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-08)

**Note:** Version bump only for package @agoric/swingset-vat
Expand Down
6 changes: 3 additions & 3 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.30.1",
"version": "0.30.2",
"description": "Vat/Container Launcher",
"type": "module",
"main": "src/index.js",
Expand Down Expand Up @@ -29,9 +29,9 @@
"@agoric/internal": "^0.2.1",
"@agoric/nat": "^4.1.0",
"@agoric/notifier": "^0.5.1",
"@agoric/store": "^0.8.2",
"@agoric/store": "^0.8.3",
"@agoric/swing-store": "^0.8.1",
"@agoric/vat-data": "^0.4.2",
"@agoric/vat-data": "^0.4.3",
"@agoric/xsnap": "^0.13.2",
"@endo/base64": "^0.2.27",
"@endo/bundle-source": "^2.3.1",
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.18.2](https://github.com/Agoric/agoric-sdk/compare/[email protected]@0.18.2) (2022-10-18)

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





### [0.18.1](https://github.com/Agoric/agoric-sdk/compare/[email protected]@0.18.1) (2022-10-08)


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.18.1",
"version": "0.18.2",
"description": "Manage the Agoric Javascript smart contract platform",
"type": "module",
"main": "src/main.js",
Expand Down Expand Up @@ -30,14 +30,14 @@
"dependencies": {
"@agoric/access-token": "^0.4.20",
"@agoric/assert": "^0.5.1",
"@agoric/cache": "^0.2.2",
"@agoric/casting": "^0.3.1",
"@agoric/cache": "^0.2.3",
"@agoric/casting": "^0.3.2",
"@agoric/cosmic-proto": "^0.2.1",
"@agoric/ertp": "^0.15.2",
"@agoric/ertp": "^0.15.3",
"@agoric/nat": "^4.1.0",
"@agoric/smart-wallet": "^0.4.1",
"@agoric/swingset-vat": "^0.30.1",
"@agoric/zoe": "^0.25.2",
"@agoric/smart-wallet": "^0.4.2",
"@agoric/swingset-vat": "^0.30.2",
"@agoric/zoe": "^0.25.3",
"@cosmjs/crypto": "0.29.0",
"@cosmjs/encoding": "0.29.0",
"@cosmjs/math": "0.29.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/cache/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.3](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-18)

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





### [0.2.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-08)

**Note:** Version bump only for package @agoric/cache
Expand Down
10 changes: 5 additions & 5 deletions packages/cache/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agoric/cache",
"version": "0.2.2",
"version": "0.2.3",
"description": "Agoric's simple cache interface",
"type": "module",
"main": "src/main.js",
Expand All @@ -20,14 +20,14 @@
"license": "Apache-2.0",
"dependencies": {
"@agoric/notifier": "^0.5.1",
"@agoric/store": "^0.8.2",
"@agoric/vat-data": "^0.4.2",
"@agoric/vats": "^0.12.1",
"@agoric/store": "^0.8.3",
"@agoric/vat-data": "^0.4.3",
"@agoric/vats": "^0.13.0",
"@endo/far": "^0.2.11",
"@endo/marshal": "^0.7.5"
},
"devDependencies": {
"@agoric/zoe": "^0.25.2",
"@agoric/zoe": "^0.25.3",
"ava": "^4.3.1",
"c8": "^7.7.2"
},
Expand Down
8 changes: 8 additions & 0 deletions packages/casting/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.3.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-18)

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





### [0.3.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-08)

**Note:** Version bump only for package @agoric/casting
Expand Down
4 changes: 2 additions & 2 deletions packages/casting/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agoric/casting",
"version": "0.3.1",
"version": "0.3.2",
"description": "Agoric's OCap broadcasting system",
"type": "module",
"main": "src/main.js",
Expand All @@ -21,7 +21,7 @@
"license": "Apache-2.0",
"dependencies": {
"@agoric/notifier": "^0.5.1",
"@agoric/spawner": "^0.6.2",
"@agoric/spawner": "^0.6.3",
"@cosmjs/encoding": "0.29.0",
"@cosmjs/proto-signing": "0.29.0",
"@cosmjs/stargate": "0.29.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/cosmic-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.39.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-18)

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





### [0.39.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-08)

**Note:** Version bump only for package @agoric/cosmic-swingset
Expand Down
14 changes: 7 additions & 7 deletions packages/cosmic-swingset/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agoric/cosmic-swingset",
"version": "0.39.1",
"version": "0.39.2",
"description": "Agoric's Cosmos blockchain integration",
"type": "module",
"bin": {
Expand All @@ -23,24 +23,24 @@
"license": "Apache-2.0",
"dependencies": {
"@agoric/assert": "^0.5.1",
"@agoric/cosmos": "^0.32.1",
"@agoric/deploy-script-support": "^0.9.3",
"@agoric/cosmos": "^0.32.2",
"@agoric/deploy-script-support": "^0.9.4",
"@agoric/internal": "^0.2.1",
"@agoric/nat": "^4.1.0",
"@agoric/notifier": "^0.5.1",
"@agoric/store": "^0.8.2",
"@agoric/store": "^0.8.3",
"@agoric/swing-store": "^0.8.1",
"@agoric/swingset-vat": "^0.30.1",
"@agoric/swingset-vat": "^0.30.2",
"@agoric/telemetry": "^0.4.0",
"@agoric/vats": "^0.12.1",
"@agoric/vats": "^0.13.0",
"@agoric/xsnap": "^0.13.2",
"@endo/far": "^0.2.11",
"@endo/import-bundle": "^0.2.53",
"@endo/init": "^0.5.49",
"@endo/marshal": "^0.7.5",
"@iarna/toml": "^2.2.3",
"@opentelemetry/sdk-metrics-base": "^0.27.0",
"agoric": "^0.18.1",
"agoric": "^0.18.2",
"anylogger": "^0.21.0",
"deterministic-json": "^1.0.5",
"import-meta-resolve": "^1.1.1",
Expand Down
8 changes: 8 additions & 0 deletions packages/deploy-script-support/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.9.4](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-18)

**Note:** Version bump only for package @agoric/deploy-script-support





### [0.9.3](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-08)

**Note:** Version bump only for package @agoric/deploy-script-support
Expand Down
14 changes: 7 additions & 7 deletions packages/deploy-script-support/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agoric/deploy-script-support",
"version": "0.9.3",
"version": "0.9.4",
"description": "Helpers and other support for writing deploy scripts",
"type": "module",
"main": "src/helpers.js",
Expand Down Expand Up @@ -35,13 +35,13 @@
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
"dependencies": {
"@agoric/assert": "^0.5.1",
"@agoric/ertp": "^0.15.2",
"@agoric/import-manager": "^0.3.5",
"@agoric/ertp": "^0.15.3",
"@agoric/import-manager": "^0.3.6",
"@agoric/nat": "^4.1.0",
"@agoric/notifier": "^0.5.1",
"@agoric/store": "^0.8.2",
"@agoric/vats": "^0.12.1",
"@agoric/zoe": "^0.25.2",
"@agoric/store": "^0.8.3",
"@agoric/vats": "^0.13.0",
"@agoric/zoe": "^0.25.3",
"@endo/base64": "^0.2.27",
"@endo/bundle-source": "^2.3.1",
"@endo/far": "^0.2.11",
Expand All @@ -50,7 +50,7 @@
"@endo/zip": "^0.2.27"
},
"devDependencies": {
"@agoric/swingset-vat": "^0.30.1",
"@agoric/swingset-vat": "^0.30.2",
"ava": "^4.3.1",
"import-meta-resolve": "^1.1.1"
},
Expand Down
8 changes: 8 additions & 0 deletions packages/governance/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.9.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-18)

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





## [0.9.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-08)


Expand Down
16 changes: 8 additions & 8 deletions packages/governance/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agoric/governance",
"version": "0.9.0",
"version": "0.9.1",
"description": "Core governance support",
"type": "module",
"main": "src/index.js",
Expand Down Expand Up @@ -30,23 +30,23 @@
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
"dependencies": {
"@agoric/assert": "^0.5.1",
"@agoric/ertp": "^0.15.2",
"@agoric/ertp": "^0.15.3",
"@agoric/internal": "^0.2.1",
"@agoric/nat": "^4.1.0",
"@agoric/notifier": "^0.5.1",
"@agoric/store": "^0.8.2",
"@agoric/swingset-vat": "^0.30.1",
"@agoric/vat-data": "^0.4.2",
"@agoric/vats": "^0.12.1",
"@agoric/zoe": "^0.25.2",
"@agoric/store": "^0.8.3",
"@agoric/swingset-vat": "^0.30.2",
"@agoric/vat-data": "^0.4.3",
"@agoric/vats": "^0.13.0",
"@agoric/zoe": "^0.25.3",
"@endo/captp": "^2.0.15",
"@endo/eventual-send": "^0.16.5",
"@endo/far": "^0.2.11",
"@endo/marshal": "^0.7.5",
"@endo/promise-kit": "^0.2.49"
},
"devDependencies": {
"@agoric/deploy-script-support": "^0.9.3",
"@agoric/deploy-script-support": "^0.9.4",
"@endo/bundle-source": "^2.3.1",
"@endo/init": "^0.5.49",
"ava": "^4.3.1",
Expand Down
8 changes: 8 additions & 0 deletions packages/import-manager/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.3.6](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-18)

**Note:** Version bump only for package @agoric/import-manager





### [0.3.5](https://github.com/Agoric/agoric-sdk/compare/@agoric/[email protected]...@agoric/[email protected]) (2022-10-08)

**Note:** Version bump only for package @agoric/import-manager
Expand Down
Loading

0 comments on commit 2c812d2

Please sign in to comment.