Skip to content

Commit

Permalink
Bump version to 0.2.0 (#754)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Nov 3, 2022
1 parent 20e9765 commit 3ec51a3
Show file tree
Hide file tree
Showing 17 changed files with 76 additions and 67 deletions.
59 changes: 30 additions & 29 deletions Cargo.lock

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

20 changes: 14 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,25 @@ members = [
"tests/logging",
"tests/errors",
]

[workspace.dependencies]
soroban-env-common = "0.0.9"
soroban-env-guest = "0.0.9"
soroban-env-host = "0.0.9"
stellar-strkey = "0.0.6"
stellar-xdr = "0.0.7"

[patch.crates-io]
soroban-sdk = { path = "soroban-sdk" }
soroban-auth = { path = "soroban-auth" }
soroban-spec = { path = "soroban-spec" }
soroban-sdk-macros = { path = "soroban-sdk-macros" }
soroban-env-common = { git = "https://github.com/stellar/rs-soroban-env", rev = "89e3948" }
soroban-env-guest = { git = "https://github.com/stellar/rs-soroban-env", rev = "89e3948" }
soroban-env-host = { git = "https://github.com/stellar/rs-soroban-env", rev = "89e3948" }
soroban-env-macros = { git = "https://github.com/stellar/rs-soroban-env", rev = "89e3948" }
soroban-native-sdk-macros = { git = "https://github.com/stellar/rs-soroban-env", rev = "89e3948" }
stellar-xdr = { git = "https://github.com/stellar/rs-stellar-xdr", rev = "3ba13687" }
soroban-env-common = { git = "https://github.com/stellar/rs-soroban-env", rev = "c04c2332" }
soroban-env-guest = { git = "https://github.com/stellar/rs-soroban-env", rev = "c04c2332" }
soroban-env-host = { git = "https://github.com/stellar/rs-soroban-env", rev = "c04c2332" }
soroban-env-macros = { git = "https://github.com/stellar/rs-soroban-env", rev = "c04c2332" }
soroban-native-sdk-macros = { git = "https://github.com/stellar/rs-soroban-env", rev = "c04c2332" }
stellar-xdr = { git = "https://github.com/stellar/rs-stellar-xdr", rev = "e88f9fa7" }
wasmi = { package = "soroban-wasmi", git = "https://github.com/stellar/wasmi", rev = "d1ec0036" }

# soroban-env-common = { path = "../rs-soroban-env/soroban-env-common" }
Expand Down
6 changes: 3 additions & 3 deletions soroban-auth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk"
authors = ["Stellar Development Foundation <[email protected]>"]
readme = "../README.md"
license = "Apache-2.0"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
rust-version = "1.64"

Expand All @@ -18,14 +18,14 @@ testutils = ["soroban-sdk/testutils", "dep:ed25519-dalek", "dep:rand"]
docs = []

[dependencies]
soroban-sdk = "0.1.0"
soroban-sdk = "0.2.0"

[target.'cfg(not(target_family="wasm"))'.dependencies]
ed25519-dalek = { version = "1.0.1", optional = true }
rand = { version = "0.7.3", optional = true }

[dev_dependencies]
soroban-sdk = { version = "0.1.0", features = ["testutils"] }
soroban-sdk = { version = "0.2.0", features = ["testutils"] }
ed25519-dalek = { version = "1.0.1" }
rand = { version = "0.7.3" }

Expand Down
8 changes: 4 additions & 4 deletions soroban-sdk-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk"
authors = ["Stellar Development Foundation <[email protected]>"]
readme = "../README.md"
license = "Apache-2.0"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
rust-version = "1.64"

Expand All @@ -15,9 +15,9 @@ proc-macro = true
doctest = false

[dependencies]
soroban-spec = "0.1.0"
soroban-env-common = "0.0.6"
stellar-xdr = { version = "0.0.6", features = ["next", "std"] }
soroban-spec = "0.2.0"
soroban-env-common = { workspace = true }
stellar-xdr = { workspace = true, features = ["next", "std"] }
syn = {version="1.0",features=["full"]}
quote = "1.0"
proc-macro2 = "1.0"
Expand Down
16 changes: 8 additions & 8 deletions soroban-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@ repository = "https://github.com/stellar/rs-soroban-sdk"
authors = ["Stellar Development Foundation <[email protected]>"]
readme = "../README.md"
license = "Apache-2.0"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
rust-version = "1.64"

[lib]
doctest = false

[dependencies]
soroban-sdk-macros = { version = "0.1.0" }
soroban-sdk-macros = { version = "0.2.0" }
bytes-lit = "0.0.4"

[target.'cfg(target_family="wasm")'.dependencies]
soroban-env-guest = { version = "0.0.6" }
soroban-env-guest = { workspace = true }

[target.'cfg(not(target_family="wasm"))'.dependencies]
soroban-env-host = { version = "0.0.6", features = ["vm", "hostfn_log_fmt_values"] }
stellar-strkey = "0.0.2"
soroban-env-host = { workspace = true, features = ["vm", "hostfn_log_fmt_values"] }
stellar-strkey = { workspace = true }
ed25519-dalek = { version = "1.0.1", optional = true }
rand = "0.8.5"

[dev-dependencies]
soroban-env-host = { version = "0.0.6", features = ["vm", "hostfn_log_fmt_values", "testutils"] }
stellar-xdr = { version = "0.0.6", features = ["next", "std"] }
soroban-spec = "0.1.0"
soroban-env-host = { workspace = true, features = ["vm", "hostfn_log_fmt_values", "testutils"] }
stellar-xdr = { workspace = true, features = ["next", "std"] }
soroban-spec = "0.2.0"
ed25519-dalek = "1.0.1"
rand = "0.8.5"
hex = "0.4.3"
Expand Down
6 changes: 3 additions & 3 deletions soroban-spec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ repository = "https://github.com/stellar/rs-soroban-sdk"
authors = ["Stellar Development Foundation <[email protected]>"]
readme = "../README.md"
license = "Apache-2.0"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
rust-version = "1.64"

[dependencies]
stellar-xdr = { version = "0.0.6", features = ["next", "std"] }
soroban-env-host = { version = "0.0.6", features = ["vm", "serde"] }
stellar-xdr = { workspace = true, features = ["next", "std"] }
soroban-env-host = { workspace = true, features = ["vm", "serde"] }
base64 = "0.13.0"
thiserror = "1.0.32"
syn = {version="1.0",features=["full"]}
Expand Down
8 changes: 4 additions & 4 deletions soroban-token-spec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk"
authors = ["Stellar Development Foundation <[email protected]>"]
readme = "../README.md"
license = "Apache-2.0"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
rust-version = "1.64"

Expand All @@ -18,14 +18,14 @@ doctest = false
testutils = ["soroban-sdk/testutils", "dep:ed25519-dalek", "dep:rand"]

[dependencies]
soroban-sdk = "0.1.0"
soroban-auth = "0.1.0"
soroban-sdk = "0.2.0"
soroban-auth = "0.2.0"

[target.'cfg(not(target_family="wasm"))'.dependencies]
ed25519-dalek = { version = "1.0.1", optional = true }
rand = { version = "0.7.3", optional = true }

[dev_dependencies]
soroban-auth = { version = "0.1.0", features = ["testutils"] }
soroban-auth = { version = "0.2.0", features = ["testutils"] }
ed25519-dalek = { version = "1.0.1" }
rand = { version = "0.7.3" }
2 changes: 1 addition & 1 deletion tests/add_bigint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_add_bigint"
version = "0.1.1"
version = "0.2.0"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion tests/add_u64/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_add_u64"
version = "0.1.1"
version = "0.2.0"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion tests/contract_data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_contract_data"
version = "0.1.1"
version = "0.2.0"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion tests/empty/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_empty"
version = "0.1.1"
version = "0.2.0"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down
Loading

0 comments on commit 3ec51a3

Please sign in to comment.