Skip to content

Commit bc3bf83

Browse files
committed
chore: release fortune-kind v0.1.10
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
1 parent da39302 commit bc3bf83

4 files changed

Lines changed: 19 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,26 @@ SPDX-License-Identifier: AGPL-3.0-only
77

88
# Changelog
99

10+
## [0.1.10] - 2023-11-23
11+
12+
### Features
13+
14+
- Port 484 lines of miscellaneous
15+
16+
### Miscellaneous Tasks
17+
18+
- Update flake inputs
19+
1020
## [0.1.9] - 2023-11-16
1121

1222
### Features
1323

1424
- Port 227 lines of people
1525

26+
### Miscellaneous Tasks
27+
28+
- Release fortune-kind v0.1.9
29+
1630
### Build
1731

1832
- Bump clap from 4.4.7 to 4.4.8

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
@@ -14,7 +14,7 @@ exclude = [ "/oldtunes" ]
1414
rust-version = "1.70.0"
1515
readme = "README.md"
1616
license = "GPL-3.0-only"
17-
version = "0.1.9"
17+
version = "0.1.10"
1818
build = "build.rs"
1919

2020
[dependencies]

Justfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,13 @@ release:
2727

2828
@gh-release:
2929
git tag -d "v{{new_version}}" || echo "tag not found, creating";
30-
git tag -a "v{{new_version}}" -m "auto generated by the justfile for {{name}} v$(convco version)"
30+
git tag --sign -a "v{{new_version}}" -m "auto generated by the justfile for {{name}} v$(convco version)"
3131
just cross
3232
mkdir -p ./target/"release-notes-$(convco version)"
3333
git cliff -t "v$(convco version)" --current > ./target/"release-notes-$(convco version)/RELEASE.md"
3434
just checksum >> ./target/"release-notes-$(convco version)/RELEASE.md"
35-
35+
36+
git push origin "v{{new_version}}"
3637
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)"/*
3738

3839
#----------------#

0 commit comments

Comments
 (0)