From 947e13a7e8462d2f450bd9af79492adf533b65c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Hodul=C3=A1k?= Date: Fri, 11 Aug 2023 16:19:37 +0200 Subject: [PATCH] fix: Remove the `version` attribute from the `eth-state-fold-test` dependency This prevents it from being published as it is only dev dependency. --- CHANGELOG.md | 7 ++++++- Cargo.toml | 5 ++--- README.md | 12 ++++++------ 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e757672..925d03c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.1] - 2023-08-11 +### Fixed +- Remove the `version` attribute from the `eth-state-fold-test` dependency to prevent it from being published. + ## [0.7.0] - 2023-08-10 ### Changes - Publish crates to crates.io instead of the `cartesi` private registry. @@ -138,7 +142,8 @@ reestablishing it at every subscription attempt. ## [0.1.0] - 2021-12-28 - Initial release -[Unreleased]: https://github.com/cartesi/state-fold/compare/v0.7.0...HEAD +[Unreleased]: https://github.com/cartesi/state-fold/compare/v0.7.1...HEAD +[0.7.1]: https://github.com/cartesi/state-fold/compare/v0.7.0...v0.7.1 [0.7.0]: https://github.com/cartesi/state-fold/compare/v0.6.3...v0.7.0 [0.6.3]: https://github.com/cartesi/state-fold/compare/v0.6.2...v0.6.3 [0.6.2]: https://github.com/cartesi/state-fold/compare/v0.6.1...v0.6.2 diff --git a/Cargo.toml b/Cargo.toml index 806a4c7..96d0769 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ members = [ ] [workspace.package] -version = "0.7.0" +version = "0.7.1" authors = [ "Gabriel Coutinho de Paula ", @@ -30,13 +30,12 @@ readme = "README.md" repository = "https://github.com/cartesi/state-fold" - [workspace.dependencies] eth-state-fold-types = { version = "0.7", path = "state-fold-types" } eth-block-history = { version = "0.7", path = "block-history" } eth-state-fold = { version = "0.7", path = "state-fold" } eth-state-server-common = { version = "0.7", path = "state-server-common" } -eth-state-fold-test = { version = "*", path = "state-fold-test" } +eth-state-fold-test = { path = "state-fold-test" } ethabi = "18" ethers = "1.0" diff --git a/README.md b/README.md index 1a1da37..0ccfaca 100644 --- a/README.md +++ b/README.md @@ -25,18 +25,18 @@ Add one or more *State Fold* crates into your `Cargo.toml` like so: ```toml [dependencies] # Common crate for all other crates -eth-state-fold-types = { version = "0.6" } +eth-state-fold-types = { version = "0.7" } # Libraries for state-fold core logic -eth-block-history = { version = "0.6" } -eth-state-fold = { version = "0.6" } +eth-block-history = { version = "0.7" } +eth-state-fold = { version = "0.7" } # Common crate for server/client -eth-state-server-common = { version = "0.6", features = ["server"] } +eth-state-server-common = { version = "0.7", features = ["server"] } # Libraries for state-fold GRPC interfaces -eth-state-server-lib = { version = "0.6" } -eth-state-client-lib = { version = "0.6" } +eth-state-server-lib = { version = "0.7" } +eth-state-client-lib = { version = "0.7" } ``` ## Usage