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 21.7.3 #1354

Closed
wants to merge 2 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
52 changes: 26 additions & 26 deletions Cargo.lock

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

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

[workspace.package]
version = "21.7.2"
version = "21.7.3"
rust-version = "1.74.0"

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

[workspace.dependencies.soroban-env-common]
version = "=21.2.1"
Expand Down
6 changes: 6 additions & 0 deletions soroban-sdk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@
#[cfg(all(target_family = "wasm", feature = "testutils"))]
compile_error!("'testutils' feature is not supported on 'wasm' target");

#[cfg(all(target_family = "wasm", target_feature = "reference-types"))]
compile_error!("Compiler configuration is unsupported by Soroban Environment, because a Wasm target-feature is enabled that is not yet supported: reference-types. Use Rust 1.81 or older to get a compatible default configuration.");

#[cfg(all(target_family = "wasm", target_feature = "multivalue"))]
compile_error!("Compiler configuration is unsupported by Soroban Environment, because a Wasm target-feature is enabled that is not yet supported: multivalue. Use Rust 1.81 or older to get a compatible default configuration.");

// When used in a no_std contract, provide a panic handler as one is required.
#[cfg(all(not(feature = "alloc"), target_family = "wasm"))]
#[panic_handler]
Expand Down
Loading