Skip to content

Commit

Permalink
Bump version to 0.0.6 (#530)
Browse files Browse the repository at this point in the history
Co-authored-by: Leigh McCulloch <[email protected]>
  • Loading branch information
github-actions[bot] and leighmcculloch authored Oct 6, 2022
1 parent e067f95 commit 91cf595
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 28 deletions.
24 changes: 12 additions & 12 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ soroban-env-common = { path = "soroban-env-common" }
soroban-env-host = { path = "soroban-env-host" }
soroban-env-macros = { path = "soroban-env-macros" }
soroban-native-sdk-macros = { path = "soroban-native-sdk-macros" }
stellar-xdr = { git = "https://github.com/stellar/rs-stellar-xdr", rev = "88ded341" }
wasmi = { package = "soroban-wasmi", git = "https://github.com/stellar/wasmi", rev = "a61b6df" }
stellar-xdr = { git = "https://github.com/stellar/rs-stellar-xdr", rev = "5cca712b" }
wasmi = { package = "soroban-wasmi", git = "https://github.com/stellar/wasmi", rev = "d1ec0036" }
8 changes: 4 additions & 4 deletions soroban-env-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ homepage = "https://github.com/stellar/rs-soroban-env"
repository = "https://github.com/stellar/rs-soroban-env"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
version = "0.0.5"
version = "0.0.6"
readme = "../README.md"
edition = "2021"
rust-version = "1.64"

[dependencies]
soroban-env-macros = { version = "0.0.5" }
stellar-xdr = { version = "0.0.2", default-features = false, features = [ "next" ] }
wasmi = { package = "soroban-wasmi", version = "0.16.0", optional = true }
soroban-env-macros = { version = "0.0.6" }
stellar-xdr = { version = "0.0.6", default-features = false, features = [ "next" ] }
wasmi = { package = "soroban-wasmi", version = "0.16.0-soroban1", optional = true }
static_assertions = "1.1.0"

[features]
Expand Down
4 changes: 2 additions & 2 deletions soroban-env-guest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ homepage = "https://github.com/stellar/rs-soroban-env"
repository = "https://github.com/stellar/rs-soroban-env"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
version = "0.0.5"
version = "0.0.6"
readme = "../README.md"
edition = "2021"
rust-version = "1.64"

[dependencies]
soroban-env-common = { version = "0.0.5" }
soroban-env-common = { version = "0.0.6" }
static_assertions = "1.1.0"

[package.metadata.docs.rs]
Expand Down
8 changes: 4 additions & 4 deletions soroban-env-host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ homepage = "https://github.com/stellar/rs-soroban-env"
repository = "https://github.com/stellar/rs-soroban-env"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
version = "0.0.5"
version = "0.0.6"
readme = "../README.md"
edition = "2021"
rust-version = "1.64"

[dependencies]
soroban-native-sdk-macros = { version = "0.0.5" }
soroban-env-common = { version = "0.0.5", features = [ "std" ] }
wasmi = { package = "soroban-wasmi", version = "0.16.0", optional = true }
soroban-native-sdk-macros = { version = "0.0.6" }
soroban-env-common = { version = "0.0.6", features = [ "std" ] }
wasmi = { package = "soroban-wasmi", version = "0.16.0-soroban1", optional = true }
static_assertions = "1.1.0"
im-rc = "15.0.0"
num-bigint = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions soroban-env-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ homepage = "https://github.com/stellar/rs-soroban-env"
repository = "https://github.com/stellar/rs-soroban-env"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
version = "0.0.5"
version = "0.0.6"
edition = "2021"
rust-version = "1.64"

[lib]
proc-macro = true

[dependencies]
stellar-xdr = { version = "0.0.2", features = ["next", "std"] }
stellar-xdr = { version = "0.0.6", features = ["next", "std"] }
syn = {version="1.0",features=["full"]}
quote = "1.0"
proc-macro2 = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion soroban-native-sdk-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ homepage = "https://github.com/stellar/rs-soroban-env"
repository = "https://github.com/stellar/rs-soroban-env"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
version = "0.0.5"
version = "0.0.6"
edition = "2021"
rust-version = "1.64"

Expand Down
2 changes: 1 addition & 1 deletion soroban-test-wasms/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "soroban-test-wasms"
version = "0.0.5"
version = "0.0.6"
description = "crate full of precompiled test WASM binaries for soroban -- for use in other tests, do not publish"
edition = "2021"
publish = false
Expand Down

0 comments on commit 91cf595

Please sign in to comment.