Skip to content

Commit

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

* fix: fix new project template
  • Loading branch information
hugocaillard committed Mar 1, 2024
1 parent a340d48 commit 7a41c0c
Show file tree
Hide file tree
Showing 15 changed files with 85 additions and 69 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
# [2.3.0](https://github.com/hirosystems/clarinet/compare/v2.2.1...v2.3.0) (2024-03-01)

##### Chores

* Update clarinet new project template (#1367) (80be7030)
* Remove chainhook subcommands (#1328) (1d084ef3)

##### New Features

* Handle deployment plans in simnet (clarinet-sdk only) (#1360) (a340d48a)
* Improve clarity-wasm results comparison (#1358) (0f9e612a)
* Enable clarity-wasm in clarity check (#1355) (abc34585)

##### Bug Fixes

* Log to devnet.log file when running js devnet (#1363) (388c5018)
* Reemove errors on exit when running devnet with `--no-dashboard` (#1357) (fad5c763)

##### Refactors

* Let @stacks/transactions handle tuple items sorting in tests diff (#1362) (d3138915)

# [2.2.1](https://github.com/hirosystems/clarinet/compare/v2.2.0...v2.2.1) (2024-02-08)

##### Bug Fixes
Expand Down
76 changes: 38 additions & 38 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 = "2.2.1"
version = "2.3.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
20 changes: 13 additions & 7 deletions components/clarinet-cli/src/generate/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -491,13 +491,13 @@ btc_address = "mvZtbibDAAA3WLpY7zXXFqRa3T4XSknBX7"
"author": "",
"license": "ISC",
"dependencies": {{
"@hirosystems/clarinet-sdk": "^1.0.0",
"@stacks/transactions": "^6.9.0",
"@hirosystems/clarinet-sdk": "^2.3.0",
"@stacks/transactions": "^6.12.0",
"chokidar-cli": "^3.0.0",
"typescript": "^5.2.2",
"vite": "^5.0.6",
"vitest": "^1.0.1",
"vitest-environment-clarinet": "^1.1.0"
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vitest": "^1.3.1",
"vitest-environment-clarinet": "^2.0.0"
}}
}}
"#,
Expand Down Expand Up @@ -580,7 +580,12 @@ import { vitestSetupFilePath, getClarinetVitestsArgv } from "@hirosystems/clarin
export default defineConfig({
test: {
environment: "clarinet", // use vitest-environment-clarinet
singleThread: true,
pool: "forks",
poolOptions: {
threads: {
singleThread: true,
},
},
setupFiles: [
vitestSetupFilePath,
// custom setup files can be added here
Expand All @@ -593,6 +598,7 @@ export default defineConfig({
},
},
});
"#.into();
let name = "vitest.config.js".into();
let path = format!("{}/{}/{}", self.project_path, self.project_name, name);
Expand Down
2 changes: 1 addition & 1 deletion components/clarinet-deployments/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clarinet-deployments"
version = "2.2.1"
version = "2.3.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion components/clarinet-files/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "clarinet-files"
description = "Clarinet manifests files helpers"
license = "GPL-3.0"
version = "2.2.1"
version = "2.3.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion components/clarinet-sdk-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "clarinet-sdk-wasm"
version = "2.3.0-rc3"
version = "2.3.0"
license = "GPL-3.0"
repository = "https://github.com/hirosystems/clarinet"
description = "The core lib that powers @hirosystems/clarinet-sdk"
Expand Down
2 changes: 1 addition & 1 deletion components/clarinet-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hirosystems/clarinet-sdk",
"version": "2.3.0-rc3",
"version": "2.3.0",
"description": "A SDK to interact with Clarity Smart Contracts",
"homepage": "https://docs.hiro.so/clarinet/feature-guides/clarinet-js-sdk",
"repository": {
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 = "2.2.1"
version = "2.3.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 = "2.2.1"
version = "2.3.0"
license = "ISC"
edition = "2018"
exclude = ["index.node"]
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.2.1",
"version": "2.3.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
2 changes: 1 addition & 1 deletion components/stacks-network/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stacks-network"
version = "2.2.1"
version = "2.3.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
Loading

0 comments on commit 7a41c0c

Please sign in to comment.