Skip to content

Commit 7a41c0c

Browse files
authored
chore: release 2.3.0 (#1369)
* chore: release 2.3.0 * fix: fix new project template
1 parent a340d48 commit 7a41c0c

File tree

15 files changed

+85
-69
lines changed

15 files changed

+85
-69
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# [2.3.0](https://github.com/hirosystems/clarinet/compare/v2.2.1...v2.3.0) (2024-03-01)
2+
3+
##### Chores
4+
5+
* Update clarinet new project template (#1367) (80be7030)
6+
* Remove chainhook subcommands (#1328) (1d084ef3)
7+
8+
##### New Features
9+
10+
* Handle deployment plans in simnet (clarinet-sdk only) (#1360) (a340d48a)
11+
* Improve clarity-wasm results comparison (#1358) (0f9e612a)
12+
* Enable clarity-wasm in clarity check (#1355) (abc34585)
13+
14+
##### Bug Fixes
15+
16+
* Log to devnet.log file when running js devnet (#1363) (388c5018)
17+
* Reemove errors on exit when running devnet with `--no-dashboard` (#1357) (fad5c763)
18+
19+
##### Refactors
20+
21+
* Let @stacks/transactions handle tuple items sorting in tests diff (#1362) (d3138915)
22+
123
# [2.2.1](https://github.com/hirosystems/clarinet/compare/v2.2.0...v2.2.1) (2024-02-08)
224

325
##### Bug Fixes

Cargo.lock

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

components/clarinet-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clarinet-cli"
3-
version = "2.2.1"
3+
version = "2.3.0"
44
authors = ["Ludo Galabru <ludo@hiro.so>", "Brice Dobry <brice@hiro.so>"]
55
edition = "2021"
66
description = "Clarinet is a simple, modern and opinionated runtime for testing, integrating and deploying Clarity smart contracts."

components/clarinet-cli/src/generate/project.rs

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -491,13 +491,13 @@ btc_address = "mvZtbibDAAA3WLpY7zXXFqRa3T4XSknBX7"
491491
"author": "",
492492
"license": "ISC",
493493
"dependencies": {{
494-
"@hirosystems/clarinet-sdk": "^1.0.0",
495-
"@stacks/transactions": "^6.9.0",
494+
"@hirosystems/clarinet-sdk": "^2.3.0",
495+
"@stacks/transactions": "^6.12.0",
496496
"chokidar-cli": "^3.0.0",
497-
"typescript": "^5.2.2",
498-
"vite": "^5.0.6",
499-
"vitest": "^1.0.1",
500-
"vitest-environment-clarinet": "^1.1.0"
497+
"typescript": "^5.3.3",
498+
"vite": "^5.1.4",
499+
"vitest": "^1.3.1",
500+
"vitest-environment-clarinet": "^2.0.0"
501501
}}
502502
}}
503503
"#,
@@ -580,7 +580,12 @@ import { vitestSetupFilePath, getClarinetVitestsArgv } from "@hirosystems/clarin
580580
export default defineConfig({
581581
test: {
582582
environment: "clarinet", // use vitest-environment-clarinet
583-
singleThread: true,
583+
pool: "forks",
584+
poolOptions: {
585+
threads: {
586+
singleThread: true,
587+
},
588+
},
584589
setupFiles: [
585590
vitestSetupFilePath,
586591
// custom setup files can be added here
@@ -593,6 +598,7 @@ export default defineConfig({
593598
},
594599
},
595600
});
601+
596602
"#.into();
597603
let name = "vitest.config.js".into();
598604
let path = format!("{}/{}/{}", self.project_path, self.project_name, name);

components/clarinet-deployments/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clarinet-deployments"
3-
version = "2.2.1"
3+
version = "2.3.0"
44
edition = "2021"
55

66
[dependencies]

components/clarinet-files/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "clarinet-files"
33
description = "Clarinet manifests files helpers"
44
license = "GPL-3.0"
5-
version = "2.2.1"
5+
version = "2.3.0"
66
edition = "2021"
77

88
[dependencies]

components/clarinet-sdk-wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "clarinet-sdk-wasm"
4-
version = "2.3.0-rc3"
4+
version = "2.3.0"
55
license = "GPL-3.0"
66
repository = "https://github.com/hirosystems/clarinet"
77
description = "The core lib that powers @hirosystems/clarinet-sdk"

components/clarinet-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hirosystems/clarinet-sdk",
3-
"version": "2.3.0-rc3",
3+
"version": "2.3.0",
44
"description": "A SDK to interact with Clarity Smart Contracts",
55
"homepage": "https://docs.hiro.so/clarinet/feature-guides/clarinet-js-sdk",
66
"repository": {

components/clarity-repl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clarity-repl"
3-
version = "2.2.1"
3+
version = "2.3.0"
44
description = "Clarity REPL"
55
authors = [
66
"Ludo Galabru <ludo@hiro.so>",

components/stacks-devnet-js/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stacks-devnet-js"
3-
version = "2.2.1"
3+
version = "2.3.0"
44
license = "ISC"
55
edition = "2018"
66
exclude = ["index.node"]

components/stacks-devnet-js/package-lock.json

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

components/stacks-devnet-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hirosystems/stacks-devnet-js",
3-
"version": "2.2.1",
3+
"version": "2.3.0",
44
"description": "stacks-devnet-js is a library for writing end to end tests for protocols interacting with the Stacks blockchain and the Bitcoin blockchain.",
55
"author": "Ludo Galabru",
66
"repository": "https://github.com/hirosystems/clarinet/tree/main/components/stacks-devnet-js",

components/stacks-network/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stacks-network"
3-
version = "2.2.1"
3+
version = "2.3.0"
44
edition = "2021"
55

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

0 commit comments

Comments
 (0)