diff --git a/CHANGELOG.md b/CHANGELOG.md index f3f3ddb..24bb61c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - **proto:** generated ProtoBuf structs from the protocol (#18) - **proto:** tonic gRPC client and server (#18) +## archway-bindings v0.2.1 (2023-10-16) + +### Fixed + +- **bindings:** fixed docs.rs build (#27) + ## archway-bindings v0.2.0 (2023-10-15) ### Added diff --git a/Cargo.lock b/Cargo.lock index bc9c95a..4312137 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -45,7 +45,7 @@ checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" [[package]] name = "archway-bindings" -version = "0.2.0" +version = "0.2.1" dependencies = [ "cosmwasm-schema", "cosmwasm-std", diff --git a/contracts/increment/Cargo.toml b/contracts/increment/Cargo.toml index 12faa32..8131761 100644 --- a/contracts/increment/Cargo.toml +++ b/contracts/increment/Cargo.toml @@ -33,7 +33,7 @@ optimize = """docker run --rm -v "$(pwd)":/code \ """ [dependencies] -archway-bindings = { version = "0.2.0", path = "../../packages/bindings" } +archway-bindings = { path = "../../packages/bindings" } cosmwasm-schema = { workspace = true } cosmwasm-std = { workspace = true, features = ["staking", "stargate"] } cosmwasm-storage = { workspace = true } diff --git a/packages/bindings/Cargo.toml b/packages/bindings/Cargo.toml index c64c700..d652889 100644 --- a/packages/bindings/Cargo.toml +++ b/packages/bindings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "archway-bindings" -version = "0.2.0" +version = "0.2.1" edition = "2021" description = "CosmWasm bindings to interact with Archway's modules" authors.workspace = true