Skip to content

Commit

Permalink
Bump version to 22.1.0 (#1493)
Browse files Browse the repository at this point in the history
### What
Bump version to 22.1.0, creating release branch.

### Why
Triggered by @sisuresh in
https://github.com/stellar/rs-soroban-env/actions/runs/11863204012.

### What is next

See the release instructions for a full rundown on the release process:
https://github.com/stellar/actions/blob/main/README-rust-release.md

Commit any changes to the `release/v22.1.0` branch that are needed in
this release.

If this is a regular release releasing from `main`, merge this PR when
ready, and after merging, create a release for this version by going to
this link:
https://github.com/stellar/rs-soroban-env/releases/new?tag=v22.1.0&title=22.1.0

If this is a backport or patch release of a past version, see the
release instructions. When ready to release this branch create a release
by going to this link:

https://github.com/stellar/rs-soroban-env/releases/new?tag=v22.1.0&title=22.1.0&target=release/v22.1.0

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Siddharth Suresh <siddharth@stellar.org>
  • Loading branch information
github-actions[bot] and sisuresh authored Nov 18, 2024
1 parent a3f7fca commit 992edd7
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 17 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ exclude = ["soroban-test-wasms/wasm-workspace"]
# NB: When bumping the major version make sure to clean up the
# code guarded by `unstable-*` features to make it enabled
# unconditionally.
version = "22.0.0"
version = "22.1.0"
rust-version = "1.79.0"

[workspace.dependencies]
soroban-env-common = { version = "=22.0.0", path = "soroban-env-common", default-features = false }
soroban-env-guest = { version = "=22.0.0", path = "soroban-env-guest" }
soroban-env-host = { version = "=22.0.0", path = "soroban-env-host" }
soroban-env-macros = { version = "=22.0.0", path = "soroban-env-macros" }
soroban-builtin-sdk-macros = { version = "=22.0.0", path = "soroban-builtin-sdk-macros" }
soroban-env-common = { version = "=22.1.0", path = "soroban-env-common", default-features = false }
soroban-env-guest = { version = "=22.1.0", path = "soroban-env-guest" }
soroban-env-host = { version = "=22.1.0", path = "soroban-env-host" }
soroban-env-macros = { version = "=22.1.0", path = "soroban-env-macros" }
soroban-builtin-sdk-macros = { version = "=22.1.0", path = "soroban-builtin-sdk-macros" }
# NB: this must match the wasmparser version wasmi is using
wasmparser = "=0.116.1"

Expand Down
7 changes: 6 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,12 @@ ignore = [

# Very low-severity TTY error we will never hit: code that's not compiled
# into production, only on windows, and only with a custom allocator.
"RUSTSEC-2021-0145"
"RUSTSEC-2021-0145",

# This ignores an error due to the now unmaintained derivative crate. This
# crate is a dependency for some of the ark crates, so we need to ignore the
# advisory.
"RUSTSEC-2024-0388"
]
# Threshold for security vulnerabilities, any vulnerability with a CVSS score
# lower than the range specified will be ignored. Note that ignored advisories
Expand Down

0 comments on commit 992edd7

Please sign in to comment.