Skip to content

Commit

Permalink
chore: release fortune-kind v0.1.10
Browse files Browse the repository at this point in the history
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
  • Loading branch information
cafkafk committed Nov 23, 2023
1 parent da39302 commit bc3bf83
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,26 @@ SPDX-License-Identifier: AGPL-3.0-only

# Changelog

## [0.1.10] - 2023-11-23

### Features

- Port 484 lines of miscellaneous

### Miscellaneous Tasks

- Update flake inputs

## [0.1.9] - 2023-11-16

### Features

- Port 227 lines of people

### Miscellaneous Tasks

- Release fortune-kind v0.1.9

### Build

- Bump clap from 4.4.7 to 4.4.8
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ exclude = [ "/oldtunes" ]
rust-version = "1.70.0"
readme = "README.md"
license = "GPL-3.0-only"
version = "0.1.9"
version = "0.1.10"
build = "build.rs"

[dependencies]
Expand Down
5 changes: 3 additions & 2 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ release:

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


git push origin "v{{new_version}}"
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)"/*

#----------------#
Expand Down

0 comments on commit bc3bf83

Please sign in to comment.