Skip to content

Commit cc52237

Browse files
v2.1.3
1 parent 563e45f commit cc52237

File tree

8 files changed

+26
-18
lines changed

8 files changed

+26
-18
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 2.1.3 (July 11, 2025)
2+
3+
- Client: Update support simplified array-style access for querying contract state variables.
4+
5+
## 2.1.2 (March 04, 2025)
6+
7+
- Client: Update Wallet to refresh chainConfig and recreate AergoClient when nodeUrl changes.
8+
19
## 2.1.1 (October 22, 2024)
210

311
- Client: Update deploy contracts as plain code

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"packages": [
44
"packages/*"
55
],
6-
"version": "2.1.2",
6+
"version": "2.1.3",
77
"useWorkspaces": true
88
}

packages/client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@herajs/client",
3-
"version": "2.1.2",
3+
"version": "2.1.3",
44
"description": "Javascript client framework for aergo",
55
"main": "dist/herajs.common.js",
66
"module": "dist/herajs.esm.js",
@@ -32,7 +32,7 @@
3232
"homepage": "https://github.com/aergoio/herajs#readme",
3333
"dependencies": {
3434
"@grpc/grpc-js": "^1.11.1",
35-
"@herajs/common": "^2.1.2",
35+
"@herajs/common": "^2.1.3",
3636
"@improbable-eng/grpc-web": "^0.9.1",
3737
"@types/google-protobuf": "^3.2.7",
3838
"google-protobuf": "^3.21.2",

packages/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@herajs/common",
3-
"version": "2.1.2",
3+
"version": "2.1.3",
44
"description": "Herajs common library",
55
"main": "dist/herajs-common.cjs.js",
66
"module": "dist/herajs-common.esm.js",

packages/crypto/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@herajs/crypto",
3-
"version": "2.1.2",
3+
"version": "2.1.3",
44
"description": "Cryptography tools for aergo",
55
"main": "dist/herajs-crypto.cjs.js",
66
"module": "dist/herajs-crypto.esm.js",
@@ -27,7 +27,7 @@
2727
},
2828
"homepage": "https://github.com/aergoio/herajs-crypto#readme",
2929
"dependencies": {
30-
"@herajs/common": "^2.1.2",
30+
"@herajs/common": "^2.1.3",
3131
"@herajs/hdkey": "^11.2.0",
3232
"@types/elliptic": "^6.4.0",
3333
"aes-js": "^3.1.1",

packages/ledger-hw-app-aergo/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@herajs/ledger-hw-app-aergo",
3-
"version": "2.1.2",
3+
"version": "2.1.3",
44
"description": "Ledger Hardware app for Aergo",
55
"main": "dist/herajs-ledger-hw-app-aergo.cjs.js",
66
"module": "dist/herajs-ledger-hw-app-aergo.esm.js",
@@ -27,9 +27,9 @@
2727
},
2828
"homepage": "https://github.com/aergoio/herajs#readme",
2929
"dependencies": {
30-
"@herajs/client": "^2.1.2",
31-
"@herajs/common": "^2.1.2",
32-
"@herajs/crypto": "^2.1.2"
30+
"@herajs/client": "^2.1.3",
31+
"@herajs/common": "^2.1.3",
32+
"@herajs/crypto": "^2.1.3"
3333
},
3434
"devDependencies": {
3535
"@ledgerhq/hw-transport": "^6.24.1",

packages/vue-plugin/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "@herajs/vue-plugin",
3-
"version": "2.1.2",
3+
"version": "2.1.3",
44
"description": "Add Aergo controller to your Vue.js project",
55
"main": "plugin.js",
66
"scripts": {},
77
"author": "aergo team and contributors",
88
"license": "MIT",
99
"dependencies": {
10-
"@herajs/client": "^2.1.2",
11-
"@herajs/wallet": "^2.1.2"
10+
"@herajs/client": "^2.1.3",
11+
"@herajs/wallet": "^2.1.3"
1212
},
1313
"gitHead": "97d1b15d147bb1bbff6d70dbe4bb06a60a881bc1"
1414
}

packages/wallet/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@herajs/wallet",
3-
"version": "2.1.2",
3+
"version": "2.1.3",
44
"description": "SDK for making Aergo wallet applications",
55
"scripts": {
66
"type-check": "tsc --noEmit",
@@ -24,10 +24,10 @@
2424
"license": "MIT",
2525
"dependencies": {
2626
"@elderapo/typed-event-emitter": "^1.4.1",
27-
"@herajs/client": "^2.1.2",
28-
"@herajs/common": "^2.1.2",
29-
"@herajs/crypto": "^2.1.2",
30-
"@herajs/ledger-hw-app-aergo": "^2.1.2",
27+
"@herajs/client": "^2.1.3",
28+
"@herajs/common": "^2.1.3",
29+
"@herajs/crypto": "^2.1.3",
30+
"@herajs/ledger-hw-app-aergo": "^2.1.3",
3131
"@types/google-protobuf": "^3.2.7",
3232
"@types/hashmap": "^2.0.29",
3333
"@types/leveldown": "^4.0.0",

0 commit comments

Comments
 (0)