Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 20.0.0-rc2.2 (and pin stellar-xdr in soroban-ledger-snapshot) #1182

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 25 additions & 24 deletions Cargo.lock

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

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,38 +29,38 @@ members = [
]

[workspace.package]
version = "20.0.0-rc2"
version = "20.0.0-rc2.2"

[workspace.dependencies]
soroban-sdk = { version = "20.0.0-rc2", path = "soroban-sdk" }
soroban-sdk-macros = { version = "20.0.0-rc2", path = "soroban-sdk-macros" }
soroban-spec = { version = "20.0.0-rc2", path = "soroban-spec" }
soroban-spec-rust = { version = "20.0.0-rc2", path = "soroban-spec-rust" }
soroban-ledger-snapshot = { version = "20.0.0-rc2", path = "soroban-ledger-snapshot" }
soroban-token-sdk = { version = "20.0.0-rc2", path = "soroban-token-sdk" }
soroban-sdk = { version = "20.0.0-rc2.2", path = "soroban-sdk" }
soroban-sdk-macros = { version = "20.0.0-rc2.2", path = "soroban-sdk-macros" }
soroban-spec = { version = "20.0.0-rc2.2", path = "soroban-spec" }
soroban-spec-rust = { version = "20.0.0-rc2.2", path = "soroban-spec-rust" }
soroban-ledger-snapshot = { version = "20.0.0-rc2.2", path = "soroban-ledger-snapshot" }
soroban-token-sdk = { version = "20.0.0-rc2.2", path = "soroban-token-sdk" }

[workspace.dependencies.soroban-env-common]
version = "20.0.0-rc2"
version = "=20.0.0-rc2"
git = "https://github.com/stellar/rs-soroban-env"
rev = "8c63bff68a15d79aca3a705ee6916a68db57b7e6"

[workspace.dependencies.soroban-env-guest]
version = "20.0.0-rc2"
version = "=20.0.0-rc2"
git = "https://github.com/stellar/rs-soroban-env"
rev = "8c63bff68a15d79aca3a705ee6916a68db57b7e6"

[workspace.dependencies.soroban-env-host]
version = "20.0.0-rc2"
version = "=20.0.0-rc2"
git = "https://github.com/stellar/rs-soroban-env"
rev = "8c63bff68a15d79aca3a705ee6916a68db57b7e6"

[workspace.dependencies.stellar-strkey]
version = "0.0.7"
version = "=0.0.7"
git = "https://github.com/stellar/rs-stellar-strkey"
rev = "e6ba45c60c16de28c7522586b80ed0150157df73"

[workspace.dependencies.stellar-xdr]
version = "20.0.0-rc1"
version = "=20.0.0-rc1"
git = "https://github.com/stellar/rs-stellar-xdr"
rev = "d5ce0c9e7aa83461773a6e81662067f35d39e4c1"
default-features = false
Expand Down
6 changes: 6 additions & 0 deletions soroban-ledger-snapshot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ soroban-env-common = {workspace = true, features = ["serde"]}
serde = { version = "1.0.0", features = ["derive"] }
serde_json = "1.0.0"
thiserror = "1.0"
# This dependency is not a direct dependency, but a transitive dependency via
# the soroban-env-host and soroban-env-common. It is included here to ensure
# that a specific version of the stellar-xdr in the workspace is pinned. This
# is because the env crates are loosely selecting any v20 of stellar-xdr, and we
# need them and this crate to pick a specific pre-release.
stellar-xdr = { workspace = true, features = ["curr", "std"] }

[dev_dependencies]
pretty_assertions = "1.2.1"
Loading
Loading