Skip to content

Commit

Permalink
Release v3.0.1 (#1119)
Browse files Browse the repository at this point in the history
* Bump version

* CHANGELOG.md
  • Loading branch information
ascjones authored May 18, 2023
1 parent d76ec86 commit c746b0d
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.1]

### Fixed
- `[contract-build]` flush the remaining buffered bytes [1118](https://github.com/paritytech/cargo-contract/pull/1118)

## [3.0.0]

### Added
Expand Down
4 changes: 2 additions & 2 deletions crates/build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "contract-build"
version = "3.0.0"
version = "3.0.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand Down Expand Up @@ -39,7 +39,7 @@ which = "4.4.0"
zip = { version = "0.6.6", default-features = false }
strum = { version = "0.24", features = ["derive"] }

contract-metadata = { version = "3.0.0", path = "../metadata" }
contract-metadata = { version = "3.0.1", path = "../metadata" }

[build-dependencies]
anyhow = "1.0.71"
Expand Down
8 changes: 4 additions & 4 deletions crates/cargo-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-contract"
version = "3.0.0"
version = "3.0.1"
authors = ["Parity Technologies <[email protected]>"]
build = "build.rs"
edition = "2021"
Expand All @@ -18,9 +18,9 @@ include = [
]

[dependencies]
contract-build = { version = "3.0.0", path = "../build" }
contract-metadata = { version = "3.0.0", path = "../metadata" }
contract-transcode = { version = "3.0.0", path = "../transcode" }
contract-build = { version = "3.0.1", path = "../build" }
contract-metadata = { version = "3.0.1", path = "../metadata" }
contract-transcode = { version = "3.0.1", path = "../transcode" }

anyhow = "1.0.71"
clap = { version = "4.2.7", features = ["derive", "env"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "contract-metadata"
version = "3.0.0"
version = "3.0.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand Down
4 changes: 2 additions & 2 deletions crates/transcode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "contract-transcode"
version = "3.0.0"
version = "3.0.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand All @@ -20,7 +20,7 @@ path = "src/lib.rs"
anyhow = "1.0.71"
base58 = { version = "0.2.0" }
blake2 = { version = "0.10.4", default-features = false }
contract-metadata = { version = "3.0.0", path = "../metadata" }
contract-metadata = { version = "3.0.1", path = "../metadata" }
escape8259 = "0.5.2"
hex = "0.4.3"
indexmap = "1.9.3"
Expand Down

0 comments on commit c746b0d

Please sign in to comment.