Skip to content
This repository has been archived by the owner on May 26, 2023. It is now read-only.

Commit

Permalink
chore(release): publish 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bb111189 committed Oct 25, 2021
1 parent 9d5c64f commit b659114
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "3.3.0",
"version": "3.3.1",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
Expand Down
6 changes: 3 additions & 3 deletions packages/zilliqa-js-account/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zilliqa-js/account",
"version": "3.3.0",
"version": "3.3.1",
"author": "Ian Tan (https://github.com/iantanwx)",
"maintainers": [
"Zilliqa Usability Team <[email protected]> (https://github.com/zilliqa/)"
Expand Down Expand Up @@ -28,9 +28,9 @@
"@types/bip39": "^2.4.0",
"@types/hdkey": "^0.7.0",
"@zilliqa-js/core": "3.3.0",
"@zilliqa-js/crypto": "3.3.0",
"@zilliqa-js/crypto": "3.3.1",
"@zilliqa-js/proto": "3.2.0",
"@zilliqa-js/util": "3.3.0",
"@zilliqa-js/util": "3.3.1",
"bip39": "^2.5.0",
"hdkey": "^1.1.0",
"tslib": "2.3.1"
Expand Down
8 changes: 4 additions & 4 deletions packages/zilliqa-js-blockchain/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zilliqa-js/blockchain",
"version": "3.3.0",
"version": "3.3.1",
"description": "Class(es) for interacting with the Zilliqa blockchain.",
"main": "dist/index.js",
"node": "dist/index.js",
Expand All @@ -25,10 +25,10 @@
"clean": "rimraf ./dist ./tsconfig.tsbuildinfo"
},
"dependencies": {
"@zilliqa-js/account": "3.3.0",
"@zilliqa-js/account": "3.3.1",
"@zilliqa-js/core": "3.3.0",
"@zilliqa-js/crypto": "3.3.0",
"@zilliqa-js/util": "3.3.0",
"@zilliqa-js/crypto": "3.3.1",
"@zilliqa-js/util": "3.3.1",
"tslib": "2.3.1",
"utility-types": "^3.4.1"
},
Expand Down
10 changes: 5 additions & 5 deletions packages/zilliqa-js-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zilliqa-js/contract",
"version": "3.3.0",
"version": "3.3.1",
"description": "Contract-related functionality.",
"main": "dist/index.js",
"node": "dist/index.js",
Expand All @@ -25,11 +25,11 @@
"clean": "rimraf ./dist ./tsconfig.tsbuildinfo"
},
"dependencies": {
"@zilliqa-js/account": "3.3.0",
"@zilliqa-js/blockchain": "3.3.0",
"@zilliqa-js/account": "3.3.1",
"@zilliqa-js/blockchain": "3.3.1",
"@zilliqa-js/core": "3.3.0",
"@zilliqa-js/crypto": "3.3.0",
"@zilliqa-js/util": "3.3.0",
"@zilliqa-js/crypto": "3.3.1",
"@zilliqa-js/util": "3.3.1",
"hash.js": "^1.1.5",
"tslib": "2.3.1",
"utility-types": "^2.1.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/zilliqa-js-crypto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zilliqa-js/crypto",
"version": "3.3.0",
"version": "3.3.1",
"description": "Core crypto utilities for signing/verification/hashing Zilliqa transactions.",
"author": "Ian Tan (https://github.com/iantanwx)",
"maintainers": [
Expand All @@ -26,7 +26,7 @@
},
"dependencies": {
"@types/elliptic": "^6.4.13",
"@zilliqa-js/util": "3.3.0",
"@zilliqa-js/util": "3.3.1",
"aes-js": "^3.1.1",
"bsert": "^0.0.4",
"elliptic": "^6.5.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/zilliqa-js-util/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zilliqa-js/util",
"version": "3.3.0",
"version": "3.3.1",
"description": "Utilities for working with Zilliqa.",
"author": "Ian Tan (https://github.com/iantanwx)",
"maintainers": [
Expand Down
12 changes: 6 additions & 6 deletions packages/zilliqa/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zilliqa-js/zilliqa",
"version": "3.3.0",
"version": "3.3.1",
"description": "Main entry point to the Zilliqa JS client.",
"author": "Ian Tan (https://github.com/iantanwx)",
"maintainers": [
Expand All @@ -22,13 +22,13 @@
"clean": "rimraf ./dist ./tsconfig.tsbuildinfo"
},
"dependencies": {
"@zilliqa-js/account": "3.3.0",
"@zilliqa-js/blockchain": "3.3.0",
"@zilliqa-js/contract": "3.3.0",
"@zilliqa-js/account": "3.3.1",
"@zilliqa-js/blockchain": "3.3.1",
"@zilliqa-js/contract": "3.3.1",
"@zilliqa-js/core": "3.3.0",
"@zilliqa-js/crypto": "3.3.0",
"@zilliqa-js/crypto": "3.3.1",
"@zilliqa-js/subscriptions": "3.3.0",
"@zilliqa-js/util": "3.3.0",
"@zilliqa-js/util": "3.3.1",
"tslib": "2.3.1"
},
"files": [
Expand Down

0 comments on commit b659114

Please sign in to comment.