Skip to content

Commit

Permalink
chore: Bump version to 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fluencebot committed Oct 23, 2023
1 parent 4a9e6fd commit a9db764
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-rs-sdk"
version = "0.10.0"
version = "0.10.1"
description = "Fluence backend SDK for developing backend applications for the Fluence network"
documentation = "https://docs.rs/fluence"
repository = "https://github.com/fluencelabs/marine-rs-sdk"
Expand All @@ -18,10 +18,10 @@ path = "src/lib.rs"
doctest = false

[dependencies]
marine-call-parameters = { path = "crates/call-parameters", version = "=0.10.0" }
marine-macro = { path = "crates/marine-macro", version = "=0.10.0" }
marine-rs-sdk-main = { path = "crates/main", version = "=0.10.0" } # warning: silent compilation break on minor verison bump. See docs/update-guide.md for details
marine-timestamp-macro = { path = "crates/timestamp-macro", version = "=0.10.0" }
marine-call-parameters = { path = "crates/call-parameters", version = "=0.10.1" }
marine-macro = { path = "crates/marine-macro", version = "=0.10.1" }
marine-rs-sdk-main = { path = "crates/main", version = "=0.10.1" } # warning: silent compilation break on minor verison bump. See docs/update-guide.md for details
marine-timestamp-macro = { path = "crates/timestamp-macro", version = "=0.10.1" }

serde = { version = "1.0.155", features = ["derive"]}

Expand Down
6 changes: 3 additions & 3 deletions crates/call-parameters/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-call-parameters"
version = "0.10.0"
version = "0.10.1"
edition = "2021"
description = "Contains CallParameters and SecurityTetralets structures for marine-rs-sdk"
documentation = "https://docs.rs/fluence"
Expand All @@ -14,8 +14,8 @@ license = "Apache-2.0"
serde = "1.0.155"

[target.'cfg(target_arch = "wasm32")'.dependencies]
marine-macro = { path = "../marine-macro", version = "=0.10.0" }
marine-rs-sdk-main = { path = "../main", version = "=0.10.0" }
marine-macro = { path = "../marine-macro", version = "=0.10.1" }
marine-rs-sdk-main = { path = "../main", version = "=0.10.1" }

[features]
default = ["marine-abi"]
Expand Down
2 changes: 1 addition & 1 deletion crates/macro-testing-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-macro-testing-utils"
version = "0.10.0"
version = "0.10.1"
edition = "2018"
description = "Some functions for testing procedural macros"
documentation = "https://docs.rs/fluence/marine-macro-testing-utils"
Expand Down
2 changes: 1 addition & 1 deletion crates/main/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-rs-sdk-main"
version = "0.10.0"
version = "0.10.1"
edition = "2018"
description = "Contains logger, allocators and several other modules for marine-rs-sdk"
documentation = "https://docs.rs/marine-rs-sdk-main"
Expand Down
2 changes: 1 addition & 1 deletion crates/marine-macro-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-macro-impl"
version = "0.10.0"
version = "0.10.1"
edition = "2018"
description = "Implementation of the `#[marine]` macro"
documentation = "https://docs.rs/fluence/marine-macro-impl"
Expand Down
6 changes: 3 additions & 3 deletions crates/marine-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-macro"
version = "0.10.0"
version = "0.10.1"
edition = "2018"
description = "Definition of the `#[marine]` macro"
documentation = "https://docs.rs/fluence/marine-macro"
Expand All @@ -18,5 +18,5 @@ proc-macro = true
doctest = false

[dependencies]
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.10.0" }
marine-rs-sdk-main = { path = "../main", version = "=0.10.0" }
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.10.1" }
marine-rs-sdk-main = { path = "../main", version = "=0.10.1" }
2 changes: 1 addition & 1 deletion crates/timestamp-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-timestamp-macro"
version = "0.10.0"
version = "0.10.1"
edition = "2018"
description = "Definition of the `#[build_timestamp]` macro"
documentation = "https://docs.rs/fluence/marine-timestamp-macro"
Expand Down

0 comments on commit a9db764

Please sign in to comment.