Skip to content

Commit

Permalink
release v2.7.0 beta 1
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Feb 15, 2024
1 parent 5a66844 commit 117c2ca
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "strict_encoding"
version = "2.7.0"
version = "2.7.0-beta.1"
description = "Strict encoding: deterministic & confined binary serialization for strict types"
keywords = ["strict-types", "gadt", "serialization", "serde", "protobuf"]
categories = ["encoding", "parsing"]
Expand All @@ -15,14 +15,14 @@ exclude = ["derive", "test_helpers"]

[dependencies]
amplify = { workspace = true, features = ["proc_attr"] }
strict_encoding_derive = { version = "2.7.0", path = "derive" }
strict_encoding_derive = { version = "2.7.0-beta.1", path = "derive" }
half = { version = "~2.2.0", optional = true } # Required to maintain MSRV
serde_crate = { workspace = true, optional = true }

[dev-dependencies]
rand = "0.8.5"
amplify = { workspace = true, features = ["proc_attr", "hex"] }
strict_encoding_test = { version = "2.7.0", path = "./test_helpers" }
strict_encoding_test = { version = "2.7.0-beta.1", path = "./test_helpers" }

[features]
default = [
Expand Down
2 changes: 1 addition & 1 deletion rust/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "strict_encoding_derive"
version = "2.7.0"
version = "2.7.0-beta.1"
description = "Strict encoding derivation macros"
keywords = ["strict-encoding", "proc-macro"]
categories = ["development-tools", "encoding"]
Expand Down
4 changes: 2 additions & 2 deletions rust/test_helpers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "strict_encoding_test"
version = "2.7.0"
version = "2.7.0-beta.1"
description = "Helper functions for testing strict encodings"
keywords = ["strict-encoding", "test-helpers"]
categories = ["encoding", "parsing", "development-tools"]
Expand All @@ -16,4 +16,4 @@ readme = "../README.md"

[dependencies]
amplify = { workspace = true }
strict_encoding = { version = "2.7.0", path = ".." }
strict_encoding = { version = "2.7.0-beta.1", path = ".." }

0 comments on commit 117c2ca

Please sign in to comment.