update versions: 0.6.5 & 0.1.7

This commit is contained in:
folex 2021-05-14 16:11:36 +03:00
parent f89113f3e3
commit e75a36b1c5
9 changed files with 15 additions and 15 deletions

View File

@ -63,7 +63,7 @@ jobs:
# For all crates in the workspace accumulate its max_version
for CRATE_NAME in $(cargo ws list)
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)
done
# Take the highest version of all
@ -95,4 +95,4 @@ jobs:
body: |
- [${{ env.FINAL_VERSION }} @ crates.io](https://crates.io/crates/${{ env.PKG_NAME }}/${{ env.FINAL_VERSION }})
draft: false
prerelease: true
prerelease: true

View File

@ -1,6 +1,6 @@
[package]
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"
description = "Rust SDK for applications for the Fluence network"
documentation = "https://docs.rs/fluence/marine-macro"
@ -19,7 +19,7 @@ crate-type = ["rlib"]
doctest = false
[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"] }
serde = "=1.0.118"

View File

@ -1,6 +1,6 @@
[package]
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"
description = "Implementation of the `#[marine]` macro"
documentation = "https://docs.rs/fluence/marine-macro"

View File

@ -1,6 +1,6 @@
[package]
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"
description = "Definition of the `#[marine]` macro"
documentation = "https://docs.rs/fluence/marine-macro"
@ -18,4 +18,4 @@ proc-macro = true
doctest = false
[dependencies]
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.6.4" }
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.6.5" }

View File

@ -1,6 +1,6 @@
[package]
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"
description = "Implementation of the `#[marine_test]` macro"
repository = "https://github.com/fluencelabs/rust-sdk/crates/macro-test"

View File

@ -1,6 +1,6 @@
[package]
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"
description = "Definition of the `#[marine_test]` macro"
repository = "https://github.com/fluencelabs/rust-sdk/crates/macro-test"
@ -17,7 +17,7 @@ proc-macro = true
doctest = false
[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"
proc-macro2 = "1.0.24"

View File

@ -1,6 +1,6 @@
[package]
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"
description = "Definition of the `#[build_timestamp]` macro"
repository = "https://github.com/fluencelabs/rust-sdk/crates/timestamp-macro"

View File

@ -19,7 +19,7 @@ path = "src/lib.rs"
doctest = false
[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"] }
serde = { version = "1.0.118", features = ["derive"] }

View File

@ -19,9 +19,9 @@ path = "src/lib.rs"
doctest = false
[dependencies]
marine-macro = { path = "../crates/marine-macro", version = "=0.6.4" }
fluence-sdk-main = { path = "../crates/main", version = "=0.6.4" }
marine-timestamp-macro = { path = "../crates/timestamp-macro", version = "=0.6.2" }
marine-macro = { path = "../crates/marine-macro", version = "=0.6.5" }
fluence-sdk-main = { path = "../crates/main", version = "=0.6.5" }
marine-timestamp-macro = { path = "../crates/timestamp-macro", version = "=0.6.5" }
serde = { version = "1.0.118", features = ["derive"]}