diff --git a/CHANGELOG.md b/CHANGELOG.md index 33dbd5f4e..6299918e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +# [0.28.0](https://github.com/hirosystems/clarinet/compare/v0.27.0...v0.28.0) (2022-03-31) + + +### Bug Fixes + +* address https://github.com/hirosystems/clarinet/issues/279 ([69253d3](https://github.com/hirosystems/clarinet/commit/69253d3f8f974e4841b30b25233e63971d38434b)) +* adjust some env variables ([6bd3436](https://github.com/hirosystems/clarinet/commit/6bd3436665ad7034e6dac2f707c0ed946b49aacb)) +* attempt to repair Test workflow ([cf1d598](https://github.com/hirosystems/clarinet/commit/cf1d5988db214fbba6a943248066e4f59337b4d9)) +* handle errors during file creation properly ([88b14b2](https://github.com/hirosystems/clarinet/commit/88b14b28b24877f5de9b61ad6b6290acb7b0beca)), closes [#229](https://github.com/hirosystems/clarinet/issues/229) +* try another nightly ([5694857](https://github.com/hirosystems/clarinet/commit/56948574d5d07f1dcdbe25c603a96991866867f8)) +* upgrade @mapbox/node-pre-gyp from 1.0.6 to 1.0.8 ([0eff1a7](https://github.com/hirosystems/clarinet/commit/0eff1a75eb920e462b48d0a595806f73a61a9d56)) +* upgrade typescript from 4.5.2 to 4.5.5 ([0129097](https://github.com/hirosystems/clarinet/commit/0129097cb2dfc1b3447edca02885f5f453b78075)) + + +### Features + +* **debugger:** add telemetry for debugger ([4438e23](https://github.com/hirosystems/clarinet/commit/4438e23430f3beee04ef0629c144b428adc55cf6)) +* **deugger:** add debugger info to README ([3026df7](https://github.com/hirosystems/clarinet/commit/3026df7beee680bd2a4e12cb8a82a89123275e2d)) +* improve clarinet integrate, clarinet contracts publish and testing harness reliability ([#240](https://github.com/hirosystems/clarinet/issues/240)) ([b9b6f74](https://github.com/hirosystems/clarinet/commit/b9b6f74a3c36b99bf816067785ca291062f8de20)), closes [#1](https://github.com/hirosystems/clarinet/issues/1) [#231](https://github.com/hirosystems/clarinet/issues/231) +* update interfaces for debugger in REPL ([38a89b5](https://github.com/hirosystems/clarinet/commit/38a89b5c6dd148488e61c9c7c7b63f90d2a0154b)) +* use lib v0.28.0 ([354fecf](https://github.com/hirosystems/clarinet/commit/354fecf1dbc9fbc4ef47996b7710a631667596a6)) + # [0.27.0](https://github.com/hirosystems/clarinet/compare/v0.26.1...v0.27.0) (2022-02-24) diff --git a/Cargo.lock b/Cargo.lock index edf16cf51..7d120ae85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -667,7 +667,7 @@ dependencies = [ [[package]] name = "clarinet" -version = "0.27.0" +version = "0.28.0" dependencies = [ "aes", "ansi_term", @@ -4429,7 +4429,7 @@ dependencies = [ [[package]] name = "stacks-devnet-js" -version = "0.27.0" +version = "0.28.0" dependencies = [ "clarinet", "error-chain", diff --git a/Cargo.toml b/Cargo.toml index 3cadec275..b881a7119 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clarinet" -version = "0.27.0" +version = "0.28.0" authors = ["Ludo Galabru "] edition = "2021" description = "Clarinet is a clarity runtime packaged as a command line tool, designed to facilitate smart contract understanding, development, testing and deployment." diff --git a/node-bindings/Cargo.lock b/node-bindings/Cargo.lock index 084f1caf2..34ee3b823 100644 --- a/node-bindings/Cargo.lock +++ b/node-bindings/Cargo.lock @@ -449,7 +449,7 @@ dependencies = [ [[package]] name = "stacks-devnet-js" -version = "0.27.0" +version = "0.28.0" dependencies = [ "clarinet", "neon", diff --git a/node-bindings/Cargo.toml b/node-bindings/Cargo.toml index 4c403d3f3..eef916fc9 100644 --- a/node-bindings/Cargo.toml +++ b/node-bindings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stacks-devnet-js" -version = "0.27.0" +version = "0.28.0" license = "ISC" edition = "2018" exclude = ["index.node"] diff --git a/node-bindings/package-lock.json b/node-bindings/package-lock.json index c14bd3645..24e7e17db 100644 --- a/node-bindings/package-lock.json +++ b/node-bindings/package-lock.json @@ -1,6 +1,6 @@ { "name": "@hirosystems/stacks-devnet-js", - "version": "0.27.0", + "version": "0.28.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/node-bindings/package.json b/node-bindings/package.json index f61cd67c4..efec8d0f9 100644 --- a/node-bindings/package.json +++ b/node-bindings/package.json @@ -1,6 +1,6 @@ { "name": "@hirosystems/stacks-devnet-js", - "version": "0.27.0", + "version": "0.28.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/node-bindings",