ecash-agora 2.6.2 → 2.6.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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +4 -5
package/README.md CHANGED
@@ -235,3 +235,7 @@ Running from `bitcoin-abc/modules/ecash-agora` if your build dir is `bitcoin-abc
235
235
  ### 2.6.2
236
236
 
237
237
  - Patch deployment to make sure we actually get our dependencies installed [D18854](https://reviews.bitcoinabc.org/D18854)
238
+
239
+ ### 2.6.3
240
+
241
+ - Another deployment patch; make sure we pin our versions to latest instead of using "latest" [D18857](https://reviews.bitcoinabc.org/D18857)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ecash-agora",
3
- "version": "2.6.2",
3
+ "version": "2.6.3",
4
4
  "description": "Library for interacting with the eCash Agora protocol",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {
@@ -34,7 +34,6 @@
34
34
  "@types/node": "^20.12.7",
35
35
  "chai": "^4.4.1",
36
36
  "chai-as-promised": "^7.1.1",
37
- "ecash-wallet": "latest",
38
37
  "mocha": "^10.4.0",
39
38
  "mocha-junit-reporter": "^2.2.1",
40
39
  "nyc": "^15.1.0",
@@ -44,8 +43,8 @@
44
43
  "typescript": "^5.4.3"
45
44
  },
46
45
  "dependencies": {
47
- "chronik-client": "latest",
48
- "ecash-lib": "latest",
49
- "ecash-wallet": "file:../ecash-wallet"
46
+ "chronik-client": "3.4.1",
47
+ "ecash-lib": "4.5.1",
48
+ "ecash-wallet": "2.2.0"
50
49
  }
51
50
  }