Skip to content

Commit 0f4cff4

Browse files
chore: version packages (#1806)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 305d854 commit 0f4cff4

27 files changed

+213
-95
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [7.2.0](https://github.com/hirosystems/stacks.js/compare/v7.1.2...v7.2.0) (2025-08-07)
7+
8+
9+
### Features
10+
11+
* Add `createNetwork` function for easy API key usage ([#1800](https://github.com/hirosystems/stacks.js/issues/1800)) ([305d854](https://github.com/hirosystems/stacks.js/commit/305d854da4afb903a46ccb09926074c69025d896))
12+
13+
14+
### Bug Fixes
15+
16+
* Respect network changing flags for `contract_call` command ([04bb69c](https://github.com/hirosystems/stacks.js/commit/04bb69ce6c940d7a9588269e14e5067862f93649))
17+
* Respect network changing flags for `deploy_contract` CLI command ([aefdf26](https://github.com/hirosystems/stacks.js/commit/aefdf260502cd43225cddadc65653e971572bfa7))
18+
* Respect network changing flags for `faucet` command ([8142c1c](https://github.com/hirosystems/stacks.js/commit/8142c1caa0286c771d001b426dd699d0d99a0b57))
19+
* Respect network changing flags for `migrate_subdomains` command ([8624397](https://github.com/hirosystems/stacks.js/commit/86243973b0e576ea238e67d837b08b0668ba4103))
20+
21+
22+
623
## [7.1.2](https://github.com/hirosystems/stacks.js/compare/v7.1.1...v7.1.2) (2025-06-18)
724

825

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "7.1.2",
2+
"version": "7.2.0",
33
"registry": "https://registry.npmjs.org/",
44
"publishConfig": {
55
"access": "public"

package-lock.json

Lines changed: 47 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/api/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [7.2.0](https://github.com/hirosystems/stacks.js/compare/v7.1.2...v7.2.0) (2025-08-07)
7+
8+
**Note:** Version bump only for package @stacks/api
9+
10+
11+
12+
13+
614
## [7.1.0](https://github.com/hirosystems/stacks.js/compare/v7.0.6...v7.1.0) (2025-06-02)
715

816
**Note:** Version bump only for package @stacks/api

packages/api/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "@stacks/api",
4-
"version": "7.1.0",
4+
"version": "7.2.0",
55
"description": "Javascript library for interacting with the Stacks Blockchain Node and API.",
66
"license": "MIT",
77
"author": "Hiro Systems PBC (https://hiro.so)",
@@ -25,9 +25,9 @@
2525
},
2626
"dependencies": {
2727
"@stacks/common": "^7.0.2",
28-
"@stacks/network": "^7.0.2",
28+
"@stacks/network": "^7.2.0",
2929
"@stacks/stacks-blockchain-api-types": "^0.61.0",
30-
"@stacks/transactions": "^7.1.0"
30+
"@stacks/transactions": "^7.2.0"
3131
},
3232
"devDependencies": {
3333
"rimraf": "^3.0.2"

packages/auth/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [7.2.0](https://github.com/hirosystems/stacks.js/compare/v7.1.2...v7.2.0) (2025-08-07)
7+
8+
**Note:** Version bump only for package @stacks/auth
9+
10+
11+
12+
13+
614
## [7.1.0](https://github.com/hirosystems/stacks.js/compare/v7.0.6...v7.1.0) (2025-06-02)
715

816
**Note:** Version bump only for package @stacks/auth

packages/auth/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stacks/auth",
3-
"version": "7.1.0",
3+
"version": "7.2.0",
44
"description": "Authentication for Stacks apps.",
55
"license": "MIT",
66
"author": "Hiro Systems PBC (https://hiro.so)",
@@ -22,9 +22,9 @@
2222
"dependencies": {
2323
"@noble/secp256k1": "1.7.1",
2424
"@stacks/common": "^7.0.2",
25-
"@stacks/encryption": "^7.1.0",
26-
"@stacks/network": "^7.0.2",
27-
"@stacks/profile": "^7.1.0",
25+
"@stacks/encryption": "^7.2.0",
26+
"@stacks/network": "^7.2.0",
27+
"@stacks/profile": "^7.2.0",
2828
"cross-fetch": "^3.1.5",
2929
"jsontokens": "^4.0.1"
3030
},

packages/bns/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [7.2.0](https://github.com/blockstack/stacks.js/compare/v7.1.2...v7.2.0) (2025-08-07)
7+
8+
**Note:** Version bump only for package @stacks/bns
9+
10+
11+
12+
13+
614
## [7.1.0](https://github.com/blockstack/stacks.js/compare/v7.0.6...v7.1.0) (2025-06-02)
715

816
**Note:** Version bump only for package @stacks/bns

packages/bns/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stacks/bns",
3-
"version": "7.1.0",
3+
"version": "7.2.0",
44
"description": "Library for working with the Stacks Blockchain Naming System BNS.",
55
"license": "MIT",
66
"author": "Hiro Systems PBC (https://hiro.so)",
@@ -21,8 +21,8 @@
2121
},
2222
"dependencies": {
2323
"@stacks/common": "^7.0.2",
24-
"@stacks/network": "^7.0.2",
25-
"@stacks/transactions": "^7.1.0"
24+
"@stacks/network": "^7.2.0",
25+
"@stacks/transactions": "^7.2.0"
2626
},
2727
"devDependencies": {
2828
"process": "^0.11.10",

packages/cli/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [7.2.0](https://github.com/hirosystems/stacks.js/compare/v7.1.2...v7.2.0) (2025-08-07)
7+
8+
9+
### Bug Fixes
10+
11+
* Respect network changing flags for `contract_call` command ([04bb69c](https://github.com/hirosystems/stacks.js/commit/04bb69ce6c940d7a9588269e14e5067862f93649))
12+
* Respect network changing flags for `deploy_contract` CLI command ([aefdf26](https://github.com/hirosystems/stacks.js/commit/aefdf260502cd43225cddadc65653e971572bfa7))
13+
* Respect network changing flags for `faucet` command ([8142c1c](https://github.com/hirosystems/stacks.js/commit/8142c1caa0286c771d001b426dd699d0d99a0b57))
14+
* Respect network changing flags for `migrate_subdomains` command ([8624397](https://github.com/hirosystems/stacks.js/commit/86243973b0e576ea238e67d837b08b0668ba4103))
15+
16+
17+
618
## [7.1.2](https://github.com/hirosystems/stacks.js/compare/v7.1.1...v7.1.2) (2025-06-18)
719

820
**Note:** Version bump only for package @stacks/cli

0 commit comments

Comments
 (0)