Skip to content

Commit 6e41755

Browse files
authored
Merge branch 'main' into network-runnable
2 parents e9aa269 + a64925e commit 6e41755

File tree

16 files changed

+387
-54
lines changed

16 files changed

+387
-54
lines changed

.github/workflows/binaries.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,10 @@ jobs:
135135
shell: bash
136136

137137
- name: Setup Software Trust Manager
138+
env:
139+
SM_HOST: https://clientauth.one.digicert.com
140+
SM_API_KEY: ${{ secrets.SM_API_KEY }}
141+
SM_CLIENT_CERT_PASSWORD: ${{ secrets.SM_CLIENT_CERT_PASSWORD }}
138142
if:
139143
github.event_name == 'release' || startsWith(github.ref, 'refs/heads/release/') || startsWith(github.head_ref, 'release/')
140144
id: stm-setup

Cargo.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,28 +21,28 @@ exclude = [
2121
]
2222

2323
[workspace.package]
24-
version = "23.4.1"
24+
version = "25.0.0"
2525
rust-version = "1.89.0"
2626

2727
# Dependencies located in this repo:
2828
[workspace.dependencies.soroban-cli]
29-
version = "=23.4.1"
29+
version = "=25.0.0"
3030
path = "cmd/soroban-cli"
3131

3232
[workspace.dependencies.soroban-spec-json]
33-
version = "=23.4.1"
33+
version = "=25.0.0"
3434
path = "./cmd/crates/soroban-spec-json"
3535

3636
[workspace.dependencies.soroban-spec-typescript]
37-
version = "23.4.1"
37+
version = "25.0.0"
3838
path = "./cmd/crates/soroban-spec-typescript"
3939

4040
[workspace.dependencies.soroban-spec-tools]
41-
version = "23.4.1"
41+
version = "25.0.0"
4242
path = "./cmd/crates/soroban-spec-tools"
4343

4444
[workspace.dependencies.stellar-ledger]
45-
version = "=23.4.1"
45+
version = "=25.0.0"
4646
path = "cmd/crates/stellar-ledger"
4747

4848
# Dependencies from the rs-stellar-xdr repo:

cmd/crates/soroban-test/tests/fixtures/bye/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stellar-bye"
3-
version = "23.4.1"
3+
version = "25.0.0"
44
edition = "2021"
55
publish = false
66

cmd/crates/soroban-test/tests/fixtures/hello/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "soroban-hello"
3-
version = "23.4.1"
3+
version = "25.0.0"
44
edition = "2021"
55
publish = false
66

cmd/crates/soroban-test/tests/fixtures/test-wasms/constructor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test_constructor"
3-
version = "23.4.1"
3+
version = "25.0.0"
44
authors = ["Stellar Development Foundation <info@stellar.org>"]
55
license = "Apache-2.0"
66
edition = "2021"

cmd/crates/soroban-test/tests/fixtures/test-wasms/custom_account/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test_custom_account"
3-
version = "23.4.1"
3+
version = "25.0.0"
44
authors = ["Stellar Development Foundation <info@stellar.org>"]
55
license = "Apache-2.0"
66
edition = "2021"

cmd/crates/soroban-test/tests/fixtures/test-wasms/custom_type/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test_custom_types"
3-
version = "23.4.1"
3+
version = "25.0.0"
44
authors = ["Stellar Development Foundation <info@stellar.org>"]
55
license = "Apache-2.0"
66
edition = "2021"

cmd/crates/soroban-test/tests/fixtures/test-wasms/empty_constructor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test_empty_constructor"
3-
version = "23.4.1"
3+
version = "25.0.0"
44
authors = ["Stellar Development Foundation <info@stellar.org>"]
55
license = "Apache-2.0"
66
edition = "2021"

cmd/crates/soroban-test/tests/fixtures/test-wasms/hello_world/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test_hello_world"
3-
version = "23.4.1"
3+
version = "25.0.0"
44
authors = ["Stellar Development Foundation <info@stellar.org>"]
55
license = "Apache-2.0"
66
edition = "2021"

0 commit comments

Comments
 (0)