Skip to content

Commit

Permalink
Bump version to 0.2.1 (#760)
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 Nov 4, 2022
1 parent 5f942ac commit 4d2559c
Show file tree
Hide file tree
Showing 17 changed files with 39 additions and 39 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,5 @@ jobs:
uses: stellar/actions/.github/workflows/rust-publish-dry-run.yml@main
with:
runs-on: ${{ matrix.sys.os }}
target: --target ${{ matrix.sys.target }}
target: ${ matrix.sys.target }}
cargo-hack-feature-options: ${{ matrix.sys.cargo-hack-feature-options }}
30 changes: 15 additions & 15 deletions Cargo.lock

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

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.2.0"
version = "0.2.1"
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.2.0"
soroban-sdk = "0.2.1"

[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.2.0", features = ["testutils"] }
soroban-sdk = { version = "0.2.1", features = ["testutils"] }
ed25519-dalek = { version = "1.0.1" }
rand = { version = "0.7.3" }

Expand Down
4 changes: 2 additions & 2 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.2.0"
version = "0.2.1"
edition = "2021"
rust-version = "1.64"

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

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

[lib]
doctest = false

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

[target.'cfg(target_family="wasm")'.dependencies]
Expand All @@ -29,7 +29,7 @@ rand = "0.8.5"
[dev-dependencies]
soroban-env-host = { workspace = true, features = ["vm", "hostfn_log_fmt_values", "testutils"] }
stellar-xdr = { workspace = true, features = ["next", "std"] }
soroban-spec = "0.2.0"
soroban-spec = "0.2.1"
ed25519-dalek = "1.0.1"
rand = "0.8.5"
hex = "0.4.3"
Expand Down
2 changes: 1 addition & 1 deletion soroban-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.2.0"
version = "0.2.1"
edition = "2021"
rust-version = "1.64"

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.2.0"
version = "0.2.1"
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.2.0"
soroban-auth = "0.2.0"
soroban-sdk = "0.2.1"
soroban-auth = "0.2.1"

[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.2.0", features = ["testutils"] }
soroban-auth = { version = "0.2.1", 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.2.0"
version = "0.2.1"
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.2.0"
version = "0.2.1"
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.2.0"
version = "0.2.1"
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.2.0"
version = "0.2.1"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion tests/errors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_errors"
version = "0.2.0"
version = "0.2.1"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion tests/events/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_events"
version = "0.2.0"
version = "0.2.1"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion tests/import_contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_import_contract"
version = "0.2.0"
version = "0.2.1"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion tests/invoke_contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_invoke_contract"
version = "0.2.0"
version = "0.2.1"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion tests/logging/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_logging"
version = "0.2.0"
version = "0.2.1"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion tests/udt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_udt"
version = "0.2.0"
version = "0.2.1"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down

0 comments on commit 4d2559c

Please sign in to comment.