Skip to content

Commit

Permalink
fix: Remove the version attribute from the eth-state-fold-test de…
Browse files Browse the repository at this point in the history
…pendency

This prevents it from being published as it is only dev dependency.
  • Loading branch information
RomanHodulak committed Aug 11, 2023
1 parent 767090b commit 947e13a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ members = [
]

[workspace.package]
version = "0.7.0"
version = "0.7.1"

authors = [
"Gabriel Coutinho de Paula <[email protected]>",
Expand All @@ -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"
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 947e13a

Please sign in to comment.