@agoric/cosmos 0.35.0-u18.2 → 0.35.0-u18.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.35.0-u18.3](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.35.0-u18.2...@agoric/cosmos@0.35.0-u18.3) (2024-12-09)
7
+
8
+ **Note:** Version bump only for package @agoric/cosmos
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.35.0-u18.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.35.0-u18.1...@agoric/cosmos@0.35.0-u18.2) (2024-11-21)
7
15
 
8
16
  **Note:** Version bump only for package @agoric/cosmos
package/app/upgrade.go CHANGED
@@ -19,6 +19,7 @@ var upgradeNamesOfThisVersion = []string{
19
19
  "agoric-upgrade-18-emerynet",
20
20
  "agoric-upgrade-18-basic",
21
21
  "agoric-upgrade-18-basic-2",
22
+ "agoric-upgrade-18-emerynet-rc3",
22
23
  "agoric-upgrade-18-a3p",
23
24
  }
24
25
 
@@ -59,7 +60,8 @@ func isPrimaryUpgradeName(name string) bool {
59
60
  validUpgradeName("agoric-upgrade-18-basic"),
60
61
  validUpgradeName("agoric-upgrade-18-a3p"):
61
62
  return true
62
- case validUpgradeName("agoric-upgrade-18-basic-2"):
63
+ case validUpgradeName("agoric-upgrade-18-basic-2"),
64
+ validUpgradeName("agoric-upgrade-18-emerynet-rc3"):
63
65
  return false
64
66
  default:
65
67
  panic(fmt.Errorf("unexpected upgrade name %s", validUpgradeName(name)))
package/git-revision.txt CHANGED
@@ -1 +1 @@
1
- 431b36a49
1
+ 793783b3b
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/cosmos",
3
- "version": "0.35.0-u18.2",
3
+ "version": "0.35.0-u18.3",
4
4
  "description": "Connect JS to the Cosmos blockchain SDK",
5
5
  "parsers": {
6
6
  "js": "mjs"
@@ -39,5 +39,5 @@
39
39
  "typeCoverage": {
40
40
  "atLeast": 0
41
41
  },
42
- "gitHead": "431b36a49f8574ce49c29d152bf0ace03eb5a348"
42
+ "gitHead": "793783b3b1ff6b47565a959cb7ba60a1835e2486"
43
43
  }