mirror of
https://github.com/fluencelabs/marine-rs-sdk
synced 2025-03-15 22:30:50 +00:00
update versions: 0.6.5 & 0.1.7
This commit is contained in:
parent
f89113f3e3
commit
e75a36b1c5
4
.github/workflows/publish_release.yml
vendored
4
.github/workflows/publish_release.yml
vendored
@ -63,7 +63,7 @@ jobs:
|
|||||||
# For all crates in the workspace accumulate its max_version
|
# For all crates in the workspace accumulate its max_version
|
||||||
for CRATE_NAME in $(cargo ws list)
|
for CRATE_NAME in $(cargo ws list)
|
||||||
do
|
do
|
||||||
CRATE_VERSION="$((cargo show --json "$CRATE_NAME" | jq -r .crate.max_version) 2>/dev/null || true)"
|
CRATE_VERSION="$((cargo show --json "$CRATE_NAME" | jq -r .crate.max_stable_version) 2>/dev/null || true)"
|
||||||
ALL_CRATES_VERSIONS+=($CRATE_VERSION)
|
ALL_CRATES_VERSIONS+=($CRATE_VERSION)
|
||||||
done
|
done
|
||||||
# Take the highest version of all
|
# Take the highest version of all
|
||||||
@ -95,4 +95,4 @@ jobs:
|
|||||||
body: |
|
body: |
|
||||||
- [${{ env.FINAL_VERSION }} @ crates.io](https://crates.io/crates/${{ env.PKG_NAME }}/${{ env.FINAL_VERSION }})
|
- [${{ env.FINAL_VERSION }} @ crates.io](https://crates.io/crates/${{ env.PKG_NAME }}/${{ env.FINAL_VERSION }})
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: true
|
prerelease: true
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "fluence-sdk-main"
|
name = "fluence-sdk-main"
|
||||||
version = "0.6.4" # remember to update html_root_url
|
version = "0.6.5" # remember to update html_root_url
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Rust SDK for applications for the Fluence network"
|
description = "Rust SDK for applications for the Fluence network"
|
||||||
documentation = "https://docs.rs/fluence/marine-macro"
|
documentation = "https://docs.rs/fluence/marine-macro"
|
||||||
@ -19,7 +19,7 @@ crate-type = ["rlib"]
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
marine-macro = { path = "../marine-macro", version = "=0.6.4" }
|
marine-macro = { path = "../marine-macro", version = "=0.6.5" }
|
||||||
|
|
||||||
log = { version = "0.4.8", features = ["std"] }
|
log = { version = "0.4.8", features = ["std"] }
|
||||||
serde = "=1.0.118"
|
serde = "=1.0.118"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "marine-macro-impl"
|
name = "marine-macro-impl"
|
||||||
version = "0.6.4" # remember to update html_root_url
|
version = "0.6.5" # remember to update html_root_url
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Implementation of the `#[marine]` macro"
|
description = "Implementation of the `#[marine]` macro"
|
||||||
documentation = "https://docs.rs/fluence/marine-macro"
|
documentation = "https://docs.rs/fluence/marine-macro"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "marine-macro"
|
name = "marine-macro"
|
||||||
version = "0.6.4" # remember to update html_root_url
|
version = "0.6.5" # remember to update html_root_url
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Definition of the `#[marine]` macro"
|
description = "Definition of the `#[marine]` macro"
|
||||||
documentation = "https://docs.rs/fluence/marine-macro"
|
documentation = "https://docs.rs/fluence/marine-macro"
|
||||||
@ -18,4 +18,4 @@ proc-macro = true
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.6.4" }
|
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.6.5" }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "marine-test-macro-impl"
|
name = "marine-test-macro-impl"
|
||||||
version = "0.1.5" # remember to update html_root_url
|
version = "0.1.7" # remember to update html_root_url
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Implementation of the `#[marine_test]` macro"
|
description = "Implementation of the `#[marine_test]` macro"
|
||||||
repository = "https://github.com/fluencelabs/rust-sdk/crates/macro-test"
|
repository = "https://github.com/fluencelabs/rust-sdk/crates/macro-test"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "marine-test-macro"
|
name = "marine-test-macro"
|
||||||
version = "0.1.6" # remember to update html_root_url
|
version = "0.1.7" # remember to update html_root_url
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Definition of the `#[marine_test]` macro"
|
description = "Definition of the `#[marine_test]` macro"
|
||||||
repository = "https://github.com/fluencelabs/rust-sdk/crates/macro-test"
|
repository = "https://github.com/fluencelabs/rust-sdk/crates/macro-test"
|
||||||
@ -17,7 +17,7 @@ proc-macro = true
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
marine-test-macro-impl = { path = "../marine-test-macro-impl", version = "0.1.5" }
|
marine-test-macro-impl = { path = "../marine-test-macro-impl", version = "0.1.7" }
|
||||||
|
|
||||||
quote = "1.0.9"
|
quote = "1.0.9"
|
||||||
proc-macro2 = "1.0.24"
|
proc-macro2 = "1.0.24"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "marine-timestamp-macro"
|
name = "marine-timestamp-macro"
|
||||||
version = "0.6.2" # remember to update html_root_url
|
version = "0.6.5" # remember to update html_root_url
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Definition of the `#[build_timestamp]` macro"
|
description = "Definition of the `#[build_timestamp]` macro"
|
||||||
repository = "https://github.com/fluencelabs/rust-sdk/crates/timestamp-macro"
|
repository = "https://github.com/fluencelabs/rust-sdk/crates/timestamp-macro"
|
||||||
|
@ -19,7 +19,7 @@ path = "src/lib.rs"
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
marine-test-macro = { path = "../crates/marine-test-macro", version = "0.1.6" }
|
marine-test-macro = { path = "../crates/marine-test-macro", version = "0.1.7" }
|
||||||
fluence-app-service = { version = "0.7.0", features = ["raw-module-api"] }
|
fluence-app-service = { version = "0.7.0", features = ["raw-module-api"] }
|
||||||
|
|
||||||
serde = { version = "1.0.118", features = ["derive"] }
|
serde = { version = "1.0.118", features = ["derive"] }
|
||||||
|
@ -19,9 +19,9 @@ path = "src/lib.rs"
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
marine-macro = { path = "../crates/marine-macro", version = "=0.6.4" }
|
marine-macro = { path = "../crates/marine-macro", version = "=0.6.5" }
|
||||||
fluence-sdk-main = { path = "../crates/main", version = "=0.6.4" }
|
fluence-sdk-main = { path = "../crates/main", version = "=0.6.5" }
|
||||||
marine-timestamp-macro = { path = "../crates/timestamp-macro", version = "=0.6.2" }
|
marine-timestamp-macro = { path = "../crates/timestamp-macro", version = "=0.6.5" }
|
||||||
|
|
||||||
serde = { version = "1.0.118", features = ["derive"]}
|
serde = { version = "1.0.118", features = ["derive"]}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user