diff --git a/.github/workflows/build-test-publish.yml b/.github/workflows/build-test-publish.yml index e285c45..c0c719b 100644 --- a/.github/workflows/build-test-publish.yml +++ b/.github/workflows/build-test-publish.yml @@ -7,7 +7,7 @@ on: branches: ["*"] env: - DEVNET_VERSION: "0.7.1" + DEVNET_VERSION: "0.7.2" DEVNET_DIR: "/tmp/devnet-ci-storage" DEVNET_PATH: "/tmp/devnet-ci-storage/starknet-devnet" FORKED_DEVNET_PORT: 5051 diff --git a/README.md b/README.md index c0767a3..ce0ff57 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ npm i starknet-devnet ## Devnet compatibility -This library version is compatible with Devnet `v0.7.1`. +This library version is compatible with Devnet `v0.7.2`. [Devnet's balance checking functionality](https://0xspaceshard.github.io/starknet-devnet/docs/balance#check-balance) is not provided in this library because it is simply replaceable using starknet.js, as witnessed by the [getAccountBalance](./test/util.ts#L61) function. diff --git a/package-lock.json b/package-lock.json index bdf6bc8..7602bf3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "starknet-devnet", - "version": "0.7.1", + "version": "0.7.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "starknet-devnet", - "version": "0.7.1", + "version": "0.7.2", "license": "MIT", "dependencies": { "axios": "^1.7.4", @@ -421,6 +421,7 @@ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.7.tgz", "integrity": "sha512-uTr2m2IbJJucF3KUxgnGOZvYbN0QgkGyWxG6973HCpMYFy2KfcgYuIwkJQMQkt1VbBMlvWRbpshFTLxnxCZjKQ==", "dev": true, + "peer": true, "dependencies": { "undici-types": "~5.26.4" } @@ -688,6 +689,7 @@ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.0.tgz", "integrity": "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==", "dev": true, + "peer": true, "bin": { "acorn": "bin/acorn" }, @@ -1467,6 +1469,7 @@ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", "dev": true, + "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", @@ -3673,6 +3676,7 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.2.tgz", "integrity": "sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==", "dev": true, + "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" diff --git a/package.json b/package.json index 54cb263..dce2a8b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "starknet-devnet", - "version": "0.7.1", + "version": "0.7.2", "description": "Starknet Devnet provider", "main": "dist/index.js", "types": "dist/index.d.ts",