diff --git a/CHANGELOG.md b/CHANGELOG.md index 561f7e9aa..4384a2122 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.29.1](https://github.com/hirosystems/clarinet/compare/v0.29.0...v0.29.1) (2022-05-03) + + +### Bug Fixes + +* fixed problem with contract ordering in lsp ([12bccc5](https://github.com/hirosystems/clarinet/commit/12bccc5db45a230f7faa91a4ab784a4161c3a135)) + # [0.29.0](https://github.com/hirosystems/clarinet/compare/v0.28.1...v0.29.0) (2022-04-21) diff --git a/Cargo.lock b/Cargo.lock index 923aeac5d..31eb02471 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -667,7 +667,7 @@ dependencies = [ [[package]] name = "clarinet" -version = "0.29.0" +version = "0.29.1" dependencies = [ "aes", "ansi_term", @@ -4429,7 +4429,7 @@ dependencies = [ [[package]] name = "stacks-devnet-js" -version = "0.29.0" +version = "0.29.1" dependencies = [ "clarinet", "error-chain", diff --git a/Cargo.toml b/Cargo.toml index 56be74714..7c67a67eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clarinet" -version = "0.29.0" +version = "0.29.1" 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 2b03a843e..13cb0dc40 100644 --- a/node-bindings/Cargo.lock +++ b/node-bindings/Cargo.lock @@ -449,7 +449,7 @@ dependencies = [ [[package]] name = "stacks-devnet-js" -version = "0.29.0" +version = "0.29.1" dependencies = [ "clarinet", "neon", diff --git a/node-bindings/Cargo.toml b/node-bindings/Cargo.toml index ff549113d..26e5442e6 100644 --- a/node-bindings/Cargo.toml +++ b/node-bindings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stacks-devnet-js" -version = "0.29.0" +version = "0.29.1" license = "ISC" edition = "2018" exclude = ["index.node"] diff --git a/node-bindings/package-lock.json b/node-bindings/package-lock.json index 54fa10c8e..4f94e1c93 100644 --- a/node-bindings/package-lock.json +++ b/node-bindings/package-lock.json @@ -1,12 +1,12 @@ { "name": "@hirosystems/stacks-devnet-js", - "version": "0.29.0", + "version": "0.29.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@hirosystems/stacks-devnet-js", - "version": "0.28.1", + "version": "0.29.0", "hasInstallScript": true, "license": "GPL-3.0", "dependencies": { diff --git a/node-bindings/package.json b/node-bindings/package.json index 3d0e3f192..59d621866 100644 --- a/node-bindings/package.json +++ b/node-bindings/package.json @@ -1,6 +1,6 @@ { "name": "@hirosystems/stacks-devnet-js", - "version": "0.29.0", + "version": "0.29.1", "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",