Skip to content

Commit 7bf815b

Browse files
committed
chore: release rime v0.1.4
Signed-off-by: Christina Sørensen <[email protected]>
1 parent ab728e8 commit 7bf815b

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,18 @@ SPDX-License-Identifier: AGPL-3.0-only
99

1010
All notable changes to this project will be documented in this file.
1111

12+
## [0.1.4] - 2023-11-16
13+
14+
### Miscellaneous Tasks
15+
16+
- Bump tokio from 1.33.0 to 1.34.0
17+
- Bump clap from 4.4.7 to 4.4.8
18+
- Bump serde from 1.0.190 to 1.0.192
19+
20+
### Refactor
21+
22+
- Make ForgeReleases.matching more functional
23+
1224
## [0.1.3] - 2023-11-09
1325

1426
### Documentation
@@ -28,6 +40,7 @@ All notable changes to this project will be documented in this file.
2840

2941
- Add more treefmt'ers, precommit hack
3042
- Bump serde_json from 1.0.107 to 1.0.108
43+
- Release rime v0.1.3
3144

3245
### Refactor
3346

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
@@ -10,7 +10,7 @@ edition = "2021"
1010
authors = ["Christina Sørensen <[email protected]>"]
1111
categories = ["command-line-utilities"]
1212
license = "AGPL-3.0-only"
13-
version = "0.1.3"
13+
version = "0.1.4"
1414
rust-version = "1.73.0"
1515

1616
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

justfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,13 @@ release:
8282

8383
@gh-release:
8484
git tag -d "v{{new_version}}" || echo "tag not found, creating";
85-
git tag -a "v{{new_version}}" -m "auto generated by the justfile for {{name}} v$(convco version)"
85+
git tag --sign -a "v{{new_version}}" -m "auto generated by the justfile for {{name}} v$(convco version)"
8686
just cross
8787
mkdir -p ./target/"release-notes-$(convco version)"
8888
git cliff -t "v$(convco version)" --current > ./target/"release-notes-$(convco version)/RELEASE.md"
8989
just checksum >> ./target/"release-notes-$(convco version)/RELEASE.md"
9090

91+
git push origin "v{{new_version}}"
9192
gh release create "v$(convco version)" --target "$(git rev-parse HEAD)" --title "{{name}} v$(convco version)" -d -F ./target/"release-notes-$(convco version)/RELEASE.md" ./target/"bin-$(convco version)"/*
9293

9394
#----------------#

0 commit comments

Comments
 (0)