Skip to content

Commit b3e813d

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

File tree

5 files changed

+26
-33
lines changed

5 files changed

+26
-33
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 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 || '' }}
@@ -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
@@ -224,7 +224,7 @@ 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:
@@ -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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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)