diff --git a/RELEASES.md b/RELEASES.md index 40120b1..474114c 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,7 @@ +## What's Changed + +- Adding git cliff, a RELEASES.md file, and a generate_changelog file. + ## What's Changed in v0.19.4 - 0.19.4 by @dessalines @@ -13,8 +17,6 @@ - @matc-pub made their first contribution in [#257](https://github.com/LemmyNet/lemmy-js-client/pull/257) - @Nothing4You made their first contribution in [#256](https://github.com/LemmyNet/lemmy-js-client/pull/256) -**Full Changelog**: https://github.com/LemmyNet/lemmy-js-client/compare/v0.19.0...v0.19.4 - ## What's Changed in v0.19.0 - v0.19.0 by @dessalines @@ -29,6 +31,8 @@ - v0.19.0-rc.15 by @dessalines - Adding `creator_is_admin` to various views. by @dessalines in [#215](https://github.com/LemmyNet/lemmy-js-client/pull/215) +**Full Changelog**: https://github.com/LemmyNet/lemmy-js-client/compare/v0.18.1...v0.19.0 + ## What's Changed in v0.18.1 - v0.18.1 by @dessalines @@ -51,8 +55,6 @@ - @sunaurus made their first contribution in [#154](https://github.com/LemmyNet/lemmy-js-client/pull/154) - @cavanaugh-richards made their first contribution -**Full Changelog**: https://github.com/LemmyNet/lemmy-js-client/compare/v0.18.0...v0.18.1 - ## What's Changed in v0.18.0 - v0.18.0 by @dessalines diff --git a/generate_changelog.sh b/generate_changelog.sh index ad1c2ac..32dc4f0 100755 --- a/generate_changelog.sh +++ b/generate_changelog.sh @@ -1,9 +1,6 @@ #!/bin/sh set -e -# Creating the new tag -new_tag="$1" - -# Prepending to the RELEASES.md -git cliff --tag "$new_tag" --output RELEASES.md +# Adding to RELEASES.md +git cliff --output RELEASES.md prettier -w RELEASES.md