Skip to content

Commit

Permalink
chore: bump version to 2.9.0 (#1572)
Browse files Browse the repository at this point in the history
* chore: bump version to 2.9.0

* chore: upgrade vscode extension dependencies

* fix: sligthly speed up devnet boot
  • Loading branch information
hugocaillard authored Sep 30, 2024
1 parent c56b2d4 commit 5c21c16
Show file tree
Hide file tree
Showing 12 changed files with 931 additions and 560 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
# [2.9.0](https://github.com/hirosystems/clarinet/compare/v2.8.0...v2.9.0) (2024-09-30)

##### New Features

* Slown down burn blocks when getting close to epoch 3.0 transition (#1569) (8fc863d3)
* Customize number of signers in devnet (#1555) (76eba28a)

##### Refactors

* Consolidate datastore and burn datastore data (#1562) (c56b2d4b)
* Remove internal dependency on the repl (#1511) (cd00c892)
* Auto extend `stacking_orders` in devnet config by default (#1528) (a3e90023)

##### Chores

* Add disable_postgres flag and separate from stack_api disabling (#1558) (1bdc2724)
* Update clarity and clarity-wasm (#1560) (b57802e9)
* Upgrade bitcoin cargo dependencies (#1556) (fb709312)
* Upgrade npm dependencies (#1551) (e38d0aef)
* Remove unused Clarinet3.toml (148bc5de)

##### Continuous Integration

* Upgrade actions/upload-artifacts and download-artifacts to v4 (#1554) (146e32ea)

##### Documentation Changes

* Fix documentation link (#1508) (ce1ffeaa)

##### Bug Fixes

* Handle reorg in epoch 3.0 (#1568) (be42dd98)
* Convert correctly from uSTX to STX when applying a deployment (#1563) (dfe40985)

##### Tests

* Add block time tests (#1541) (5ecaee9a)

# [2.8.0](https://github.com/hirosystems/clarinet/compare/v2.7.0...v2.8.0) (2024-08-01)

##### New Features
Expand Down
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ members = [
default-members = ["components/clarinet-cli"]

[workspace.package]
version = "2.8.0"
version = "2.9.0"

[workspace.dependencies]
clarity = { git = "https://github.com/stacks-network/stacks-core.git", branch="feat/clarity-wasm-develop", package = "clarity", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions components/clarinet-sdk/browser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hirosystems/clarinet-sdk-browser",
"version": "2.8.1",
"version": "2.9.0",
"description": "A SDK to interact with Clarity Smart Contracts in the browser",
"homepage": "https://www.hiro.so/clarinet",
"repository": {
Expand Down Expand Up @@ -28,7 +28,7 @@
"license": "GPL-3.0",
"readme": "./README.md",
"dependencies": {
"@hirosystems/clarinet-sdk-wasm-browser": "^2.8.0",
"@hirosystems/clarinet-sdk-wasm-browser": "^2.9.0",
"@stacks/transactions": "^6.13.0"
}
}
4 changes: 2 additions & 2 deletions components/clarinet-sdk/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hirosystems/clarinet-sdk",
"version": "2.8.1",
"version": "2.9.0",
"description": "A SDK to interact with Clarity Smart Contracts in node.js",
"homepage": "https://www.hiro.so/clarinet",
"repository": {
Expand Down Expand Up @@ -61,7 +61,7 @@
"license": "GPL-3.0",
"readme": "./README.md",
"dependencies": {
"@hirosystems/clarinet-sdk-wasm": "^2.8.0",
"@hirosystems/clarinet-sdk-wasm": "^2.9.0",
"@stacks/transactions": "^6.13.0",
"kolorist": "^1.8.0",
"prompts": "^2.4.2",
Expand Down
2 changes: 1 addition & 1 deletion components/clarity-vscode/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@types/vscode": "^1.68.0"
},
"dependencies": {
"@vscode/test-web": "0.0.56",
"@vscode/test-web": "0.0.61",
"vscode-languageclient": "^9.0.1"
}
}
Loading

0 comments on commit 5c21c16

Please sign in to comment.