Skip to content

Commit

Permalink
Bump version 1.0.5 -> 2.0.0
Browse files Browse the repository at this point in the history
the major bump is because the binary format changed, the new version can
read the old serialization format but if the old version program try to
read a new serialization format it will error on version.
  • Loading branch information
RCasatta committed Jan 15, 2025
1 parent eb156f3 commit 0112982
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blocks_iterator_cli"
version = "1.0.5"
version = "2.0.0"
authors = ["Riccardo Casatta <[email protected]>"]
edition = "2018"
description = "Iterates Bitcoin blocks"
Expand All @@ -19,7 +19,7 @@ categories = [
consensus = ["blocks_iterator/consensus"]

[dependencies]
blocks_iterator = { version = "1.0.4", path = "../lib", features = ["cli"]}
blocks_iterator = { version = "2.0.0", path = "../lib", features = ["cli"] }
bitcoin = { workspace = true, features = ["serde"] }
clap = { workspace = true }
env_logger = ">=0.10,<0.12"
Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blocks_iterator"
version = "1.0.5"
version = "2.0.0"
authors = ["Riccardo Casatta <[email protected]>"]
edition = "2018"
description = "Iterates Bitcoin blocks"
Expand Down

0 comments on commit 0112982

Please sign in to comment.