Skip to content

Commit

Permalink
Bump version to 0.0.7 (#556)
Browse files Browse the repository at this point in the history
* Bump version to 0.0.7

* Update stellar-xdr to v0.0.7

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Leigh McCulloch <[email protected]>
  • Loading branch information
3 people authored Nov 2, 2022
1 parent a9af579 commit 981191c
Show file tree
Hide file tree
Showing 9 changed files with 72 additions and 49 deletions.
91 changes: 57 additions & 34 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ 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 = "3ba13687" }
stellar-xdr = { git = "https://github.com/stellar/rs-stellar-xdr", rev = "e88f9fa7" }
wasmi = { package = "soroban-wasmi", git = "https://github.com/stellar/wasmi", rev = "d1ec0036" }

[profile.release]
Expand Down
6 changes: 3 additions & 3 deletions soroban-env-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ 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.6"
version = "0.0.7"
readme = "../README.md"
edition = "2021"
rust-version = "1.64"

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

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.6"
version = "0.0.7"
readme = "../README.md"
edition = "2021"
rust-version = "1.64"

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

[package.metadata.docs.rs]
Expand Down
6 changes: 3 additions & 3 deletions soroban-env-host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ 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.6"
version = "0.0.7"
readme = "../README.md"
edition = "2021"
rust-version = "1.64"

[dependencies]
soroban-native-sdk-macros = { version = "0.0.6" }
soroban-env-common = { version = "0.0.6", features = [ "std" ] }
soroban-native-sdk-macros = { version = "0.0.7" }
soroban-env-common = { version = "0.0.7", features = [ "std" ] }
wasmi = { package = "soroban-wasmi", version = "0.16.0-soroban1", optional = true }
static_assertions = "1.1.0"
im-rc = "15.0.0"
Expand Down
2 changes: 1 addition & 1 deletion soroban-env-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.6"
version = "0.0.7"
edition = "2021"
rust-version = "1.64"

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.6"
version = "0.0.7"
edition = "2021"
rust-version = "1.64"

Expand Down
6 changes: 3 additions & 3 deletions soroban-synth-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ 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.6"
version = "0.0.7"
edition = "2021"
rust-version = "1.64"
publish = false

[dependencies]
wasm-encoder = "0.18.0"
wasmparser = "0.92.0"
soroban-env-common = "0.0.6"
soroban-env-common = "0.0.7"

[dev-dependencies]
expect-test = "1.4.0"
wasmprinter = "0.2.41"
wasmprinter = "0.2.41"
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.6"
version = "0.0.7"
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 981191c

Please sign in to comment.