Skip to content

Commit

Permalink
chore: release 2.8.0 (#1526)
Browse files Browse the repository at this point in the history
* chore: release 2.8.0

* refactor: remove test devnet logs

* fix: improve default stacking order for epoch 3.0
  • Loading branch information
hugocaillard committed Aug 1, 2024
1 parent a3e9002 commit 15d4f6c
Show file tree
Hide file tree
Showing 11 changed files with 59 additions and 41 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
# [2.8.0](https://github.com/hirosystems/clarinet/compare/v2.7.0...v2.8.0) (2024-08-01)

##### New Features

* Add `stacks_node_next_initiative_delay` in devnet config (#1523) (56f7c469)
* Advance burn and stacks chain tips independently (#1506) (efeadc5c)
* Clarinet sdk browser (#1448) (19824418)

##### Chores

* Update time version (#1525) (428afdc6)
* Clippy warning v1.80 (#1518) (445ea332)
* Update reqwest and tokio version and other dependencies (#1510) (bce1a301)

##### Documentation Changes

* Fix cbtc example (#1492) (978ee627)

##### Bug Fixes

* Improve vitest matcher sources resolver (#1514) (0cd1b950)
* Testnet.toml path in project creation template (#1504) (b37d9f82)

# [2.7.0](https://github.com/hirosystems/clarinet/compare/v2.6.0...v2.7.0) (2024-06-28)

##### New Features
Expand Down
38 changes: 19 additions & 19 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.7.0"
version = "2.8.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-cli/src/generate/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -365,15 +365,15 @@ start_at_cycle = 1
duration = 10
auto_extend = true
wallet = "wallet_2"
slots = 1
slots = 2
btc_address = "muYdXKmX9bByAueDe6KFfHd5Ff1gdN9ErG"
[[devnet.pox_stacking_orders]]
start_at_cycle = 1
duration = 10
auto_extend = true
wallet = "wallet_3"
slots = 1
slots = 2
btc_address = "mvZtbibDAAA3WLpY7zXXFqRa3T4XSknBX7"
"#,
Expand Down
3 changes: 1 addition & 2 deletions components/clarinet-sdk-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "clarinet-sdk-wasm"
# version.workspace = true
version = "2.8.0-beta6"
version.workspace = true
edition = "2021"
license = "GPL-3.0"
repository = "https://github.com/hirosystems/clarinet"
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.0-beta6",
"version": "2.8.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-beta6",
"@hirosystems/clarinet-sdk-wasm-browser": "^2.8.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.0-beta6",
"version": "2.8.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-beta6",
"@hirosystems/clarinet-sdk-wasm": "^2.8.0",
"@stacks/transactions": "^6.13.0",
"kolorist": "^1.8.0",
"prompts": "^2.4.2",
Expand Down
4 changes: 2 additions & 2 deletions components/stacks-devnet-js/package-lock.json

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

2 changes: 1 addition & 1 deletion components/stacks-devnet-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hirosystems/stacks-devnet-js",
"version": "2.7.0",
"version": "2.8.0",
"description": "stacks-devnet-js is a library for writing end to end tests for protocols interacting with the Stacks blockchain and the Bitcoin blockchain.",
"author": "Ludo Galabru",
"repository": "https://github.com/hirosystems/clarinet/tree/main/components/stacks-devnet-js",
Expand Down
4 changes: 0 additions & 4 deletions components/stacks-network/src/chains_coordinator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -437,11 +437,7 @@ pub async fn start_chains_coordinator(
}
ObserverEvent::NotifyBitcoinTransactionProxied => {
if !boot_completed.load(Ordering::SeqCst) {
let _ = devnet_event_tx
.send(DevnetEvent::info("1 - Waiting for boot mining".to_string()));
std::thread::sleep(std::time::Duration::from_secs(1));
let _ = devnet_event_tx
.send(DevnetEvent::info("1 - Trigger boot mining".to_string()));
let res = mine_bitcoin_block(
&config.services_map_hosts.bitcoin_node_host,
config.devnet_config.bitcoin_node_username.as_str(),
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

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

0 comments on commit 15d4f6c

Please sign in to comment.