Skip to content

Commit

Permalink
chore: bump version to 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hugocaillard committed May 9, 2023
1 parent 175b1cc commit a2e0e02
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 17 deletions.
27 changes: 26 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@
#### 2023-03-22
#### 1.6.0 (2023-05-09)

##### Chores

* Update subnet images and contract (775b662e)
* Set genesis block time to current system time (6d89401)

*Note* Previously whenever a simnet was started, the genesis block’s time (the `burn_block_time` field) was set to 0. Subsequent blocks were assigned a time of `1800 * block_height`, because they were based off of a genesis block with a time of 0.

Because this isn’t a very realistic genesis block time, we’ve updated the genesis block to use the current system time. Subsequent blocks are still given times at an interval of 1800ms, but they are based off of the genesis block’s time, so they are calculated as `genesis.burn_block_time + (1800 * block_height)`.

While this is unlikely to be a breaking change in most places, any code that relies on a specific block time could be impacted by this change.

##### New Features

* Allow specifying filename with test coverage (5977ec18)

##### Bug Fixes

* Handle clarity-version in the dependency detector (f91f8f8e)
* Handle lsp default configuration (61792b65)
* Use chrono to get genesis time (504b4fd6)
* Don't prompt to write files to project dir when using `--allow-write` flag (#981) (d5c654eb)
* Remove `[[ustx_balance]]` from subnet config to work with subnets v0.5.0 (7f0e2355)

#### 1.5.3 (2023-03-22)

##### Other Changes

Expand Down
24 changes: 12 additions & 12 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 components/clarinet-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clarinet-cli"
version = "1.5.4"
version = "1.6.0"
authors = ["Ludo Galabru <ludo@hiro.so>", "Brice Dobry <brice@hiro.so>"]
edition = "2021"
description = "Clarinet is a simple, modern and opinionated runtime for testing, integrating and deploying Clarity smart contracts."
Expand Down
2 changes: 1 addition & 1 deletion components/clarity-repl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clarity-repl"
version = "1.5.4"
version = "1.6.0"
description = "Clarity REPL"
authors = [
"Ludo Galabru <ludo@hiro.so>",
Expand Down
2 changes: 1 addition & 1 deletion components/stacks-devnet-js/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stacks-devnet-js"
version = "1.5.4"
version = "1.6.0"
license = "ISC"
edition = "2018"
exclude = ["index.node"]
Expand Down
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": "1.5.4",
"version": "1.6.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
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}

0 comments on commit a2e0e02

Please sign in to comment.