Skip to content

Commit 755fbfa

Browse files
committed
chore: Release cshell version 0.3.0
1 parent bc2213f commit 755fbfa

File tree

5 files changed

+31
-38
lines changed

5 files changed

+31
-38
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ on:
4747
jobs:
4848
# Run 'dist plan' (or host) to determine what tasks we need to do
4949
plan:
50-
runs-on: "ubuntu-20.04"
50+
runs-on: "ubuntu-22.04"
5151
outputs:
5252
val: ${{ steps.plan.outputs.manifest }}
5353
tag: ${{ !github.event.pull_request && github.ref_name || '' }}
@@ -60,7 +60,7 @@ jobs:
6060
with:
6161
submodules: recursive
6262
- name: Install Rust
63-
run: rustup update "1.82.0" --no-self-update && rustup default "1.82.0"
63+
run: rustup update "1.86.0" --no-self-update && rustup default "1.86.0"
6464
- name: Install dist
6565
# we specify bash to get pipefail; it guards against the `curl` command
6666
# failing. otherwise `sh` won't catch that `curl` returned non-0
@@ -128,7 +128,7 @@ jobs:
128128
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
129129
fi
130130
- name: Use rustup to set correct Rust version
131-
run: rustup update "1.82.0" --no-self-update && rustup default "1.82.0"
131+
run: rustup update "1.86.0" --no-self-update && rustup default "1.86.0"
132132
- name: Install dist
133133
run: ${{ matrix.install_dist.run }}
134134
# Get the dist-manifest
@@ -172,7 +172,7 @@ jobs:
172172
needs:
173173
- plan
174174
- build-local-artifacts
175-
runs-on: "ubuntu-20.04"
175+
runs-on: "ubuntu-22.04"
176176
env:
177177
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
178178
BUILD_MANIFEST_NAME: target/distrib/global-dist-manifest.json
@@ -181,7 +181,7 @@ jobs:
181181
with:
182182
submodules: recursive
183183
- name: Install Rust
184-
run: rustup update "1.82.0" --no-self-update && rustup default "1.82.0"
184+
run: rustup update "1.86.0" --no-self-update && rustup default "1.86.0"
185185
- name: Install cached dist
186186
uses: actions/download-artifact@v4
187187
with:
@@ -224,15 +224,15 @@ jobs:
224224
if: ${{ always() && needs.plan.outputs.publishing == 'true' && (needs.build-global-artifacts.result == 'skipped' || needs.build-global-artifacts.result == 'success') && (needs.build-local-artifacts.result == 'skipped' || needs.build-local-artifacts.result == 'success') }}
225225
env:
226226
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
227-
runs-on: "ubuntu-20.04"
227+
runs-on: "ubuntu-22.04"
228228
outputs:
229229
val: ${{ steps.host.outputs.manifest }}
230230
steps:
231231
- uses: actions/checkout@v4
232232
with:
233233
submodules: recursive
234234
- name: Install Rust
235-
run: rustup update "1.82.0" --no-self-update && rustup default "1.82.0"
235+
run: rustup update "1.86.0" --no-self-update && rustup default "1.86.0"
236236
- name: Install cached dist
237237
uses: actions/download-artifact@v4
238238
with:
@@ -286,7 +286,7 @@ jobs:
286286
needs:
287287
- plan
288288
- host
289-
runs-on: "ubuntu-20.04"
289+
runs-on: "ubuntu-22.04"
290290
env:
291291
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
292292
PLAN: ${{ needs.plan.outputs.val }}
@@ -336,7 +336,7 @@ jobs:
336336
# still allowing individual publish jobs to skip themselves (for prereleases).
337337
# "host" however must run to completion, no skipping allowed!
338338
if: ${{ always() && needs.host.result == 'success' && (needs.publish-homebrew-formula.result == 'skipped' || needs.publish-homebrew-formula.result == 'success') }}
339-
runs-on: "ubuntu-20.04"
339+
runs-on: "ubuntu-22.04"
340340
env:
341341
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
342342
steps:

CHANGELOG.md

Lines changed: 17 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,49 +2,42 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [0.2.1] - 2025-03-06
5+
## [0.3.0] - 2025-04-21
6+
7+
### 🚀 Features
8+
9+
- Catalyst milestone 1
10+
- Add integration tests
11+
- Create transactions using TX3 (#7)
12+
- Implement explorer PoC
613

714
### 🐛 Bug Fixes
815

16+
- CI runner
917
- Use ListOption instead of listing possibilities
1018
- Allow empty headers on provider
11-
12-
## [0.2.0] - 2025-03-05
13-
14-
### 🚀 Features
15-
16-
- Add integration tests
19+
- Integraction tests
1720

1821
### 🔧 Continuous Integration
1922

2023
- Fix integration tests
24+
- Update cargo dist to latest version (#8)
2125

2226
### ⚙️ Miscellaneous Tasks
2327

28+
- Initialize Cargo package
29+
- Release 0.1.0
30+
- Release cshell version 0.1.0
31+
- Release cshell version 0.1.0
2432
- Get balance and edit providers
2533
- Add wallet edit
2634
- Release cshell version 0.2.0
35+
- Move pallas-wallet into CShell
36+
- Add wallet import for RO wallets
2737

2838
### Release
2939

3040
- 0.2.0
3141
- 0.2.0
3242

33-
## [0.1.0] - 2025-02-14
34-
35-
### 🚀 Features
36-
37-
- Catalyst milestone 1
38-
39-
### 🐛 Bug Fixes
40-
41-
- CI runner
42-
43-
### ⚙️ Miscellaneous Tasks
44-
45-
- Initialize Cargo package
46-
- Release 0.1.0
47-
- Release cshell version 0.1.0
48-
- Release cshell version 0.1.0
49-
5043
<!-- generated by git-cliff -->

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cshell"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
edition = "2021"
55
rust-version = "1.82.0"
66
authors = ["TxPipe <[email protected]>"]

dist-workspace.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pr-run-mode = "plan"
2020
# Whether to install an updater program
2121
install-updater = false
2222
# The preferred Rust toolchain to use in CI (rustup toolchain syntax)
23-
rust-toolchain-version = "1.82.0"
23+
rust-toolchain-version = "1.86.0"
2424
# The archive format to use for windows builds (defaults .zip)
2525
windows-archive = ".tar.gz"
2626
# The archive format to use for non-windows builds (defaults .tar.xz)
@@ -31,8 +31,8 @@ npm-scope = "@txpipe"
3131
install-path = "CARGO_HOME"
3232

3333
[dist.github-custom-runners]
34-
global = "ubuntu-24.04"
35-
x86_64-unknown-linux-gnu = "ubuntu-24.04"
34+
global = "ubuntu-22.04"
35+
x86_64-unknown-linux-gnu = "ubuntu-22.04"
3636
aarch64-apple-darwin = "macos-14"
3737
x86_64-apple-darwin = "macos-13"
3838
aarch64-unknown-linux-gnu = "ubuntu-22.04-arm"

0 commit comments

Comments
 (0)