Skip to content

Commit dde778f

Browse files
Bump version to 23.1.3 (#2202)
1 parent e10cf7f commit dde778f

File tree

13 files changed

+47
-36
lines changed

13 files changed

+47
-36
lines changed

.github/workflows/binaries.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
build-macos:
4646
if:
4747
github.event_name == 'release' || github.ref == 'refs/heads/main' ||
48-
startsWith(github.head_ref, 'release/')
48+
startsWith(github.ref, 'refs/heads/release/') || startsWith(github.head_ref, 'release/')
4949
strategy:
5050
fail-fast: false
5151
matrix:
@@ -69,7 +69,7 @@ jobs:
6969
build-windows:
7070
if:
7171
github.event_name == 'release' || github.ref == 'refs/heads/main' ||
72-
startsWith(github.head_ref, 'release/')
72+
startsWith(github.ref, 'refs/heads/release/') || startsWith(github.head_ref, 'release/')
7373
strategy:
7474
fail-fast: false
7575
matrix:

.github/workflows/rust.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,17 @@ defaults:
1616
shell: bash
1717

1818
jobs:
19+
debug-context:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: Debug GitHub context
23+
run: |
24+
echo "Event name: ${{ github.event_name }}"
25+
echo "Ref: ${{ github.ref }}"
26+
echo "Head ref: ${{ github.head_ref }}"
27+
echo "Base ref: ${{ github.base_ref }}"
28+
echo "Condition result: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/') || startsWith(github.head_ref, 'release/') }}"
29+
1930
complete:
2031
if: always()
2132
needs:
@@ -86,7 +97,7 @@ jobs:
8697

8798
build-and-test-macos:
8899
if:
89-
github.ref == 'refs/heads/main' || startsWith(github.head_ref, 'release/')
100+
github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/') || startsWith(github.head_ref, 'release/')
90101
strategy:
91102
fail-fast: false
92103
matrix:
@@ -106,7 +117,7 @@ jobs:
106117

107118
build-and-test-windows:
108119
if:
109-
github.ref == 'refs/heads/main' || startsWith(github.head_ref, 'release/')
120+
github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/') || startsWith(github.head_ref, 'release/')
110121
strategy:
111122
fail-fast: false
112123
matrix:

Cargo.lock

Lines changed: 17 additions & 17 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
@@ -20,28 +20,28 @@ exclude = [
2020
]
2121

2222
[workspace.package]
23-
version = "23.1.2"
23+
version = "23.1.3"
2424
rust-version = "1.89.0"
2525

2626
# Dependencies located in this repo:
2727
[workspace.dependencies.soroban-cli]
28-
version = "=23.1.2"
28+
version = "=23.1.3"
2929
path = "cmd/soroban-cli"
3030

3131
[workspace.dependencies.soroban-spec-json]
32-
version = "=23.1.2"
32+
version = "=23.1.3"
3333
path = "./cmd/crates/soroban-spec-json"
3434

3535
[workspace.dependencies.soroban-spec-typescript]
36-
version = "23.1.2"
36+
version = "23.1.3"
3737
path = "./cmd/crates/soroban-spec-typescript"
3838

3939
[workspace.dependencies.soroban-spec-tools]
40-
version = "23.1.2"
40+
version = "23.1.3"
4141
path = "./cmd/crates/soroban-spec-tools"
4242

4343
[workspace.dependencies.stellar-ledger]
44-
version = "=23.1.2"
44+
version = "=23.1.3"
4545
path = "cmd/crates/stellar-ledger"
4646

4747
# 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.1.2"
3+
version = "23.1.3"
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.1.2"
3+
version = "23.1.3"
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.1.2"
3+
version = "23.1.3"
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.1.2"
3+
version = "23.1.3"
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.1.2"
3+
version = "23.1.3"
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.1.2"
3+
version = "23.1.3"
44
authors = ["Stellar Development Foundation <info@stellar.org>"]
55
license = "Apache-2.0"
66
edition = "2021"

0 commit comments

Comments
 (0)