diff --git a/CHANGELOG.md b/CHANGELOG.md index 19cc6b3..d65dcc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 6e41fdf..893499c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -236,7 +236,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fortune-kind" -version = "0.1.9" +version = "0.1.10" dependencies = [ "assert_cmd", "clap", diff --git a/Cargo.toml b/Cargo.toml index dcf7024..3029d31 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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] diff --git a/Justfile b/Justfile index 0fa8e27..96e5e7c 100644 --- a/Justfile +++ b/Justfile @@ -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)"/* #----------------#