diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index baf4de0..414a856 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: CSchoel/release-notes-from-changelog@v0.2.0 + - uses: CSchoel/release-notes-from-changelog@v0.2.1 - uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2bf24d4..d1a36d9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: CSchoel/release-notes-from-changelog@v0.2.0 + - uses: CSchoel/release-notes-from-changelog@v0.2.1 with: version: 0.1.0 end-pattern: '$' @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: CSchoel/release-notes-from-changelog@v0.2.0 + - uses: CSchoel/release-notes-from-changelog@v0.2.1 with: version: 0.1.5 begin-pattern: '/^### Fixed/' diff --git a/CHANGELOG.md b/CHANGELOG.md index d2e1851..1744926 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,15 +9,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added -[nothing] +nothing ### Changed -[nothing] +nothing ### Fixed -[nothing] +nothing + +## [0.2.1] + +### Added + +* parameter `link-pattern` that allows to extract footnote-style link for version from changelog + +### Changed + +* changelog now also contains links that allow to compare versions on github ## [0.2.0] @@ -26,10 +36,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). * renames `start-pattern` to `begin-pattern` for better naming consistency (begin/end instead of start/end) * adds surrounding slashes to `begin-pattern` and `end-pattern`, so that other sed patterns like `$` can be used -### Fixed - -[nothing] - ## [0.1.9] ### Added @@ -101,6 +107,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). [Unreleased]: https://github.com/CSchoel/release-notes-from-changelog/compare/v0.2.0..HEAD +[0.2.1]: https://github.com/CSchoel/release-notes-from-changelog/compare/v0.2.0..v0.2.1 [0.2.0]: https://github.com/CSchoel/release-notes-from-changelog/compare/v0.1.9..v0.2.0 [0.1.9]: https://github.com/CSchoel/release-notes-from-changelog/compare/v0.1.8..v0.1.9 [0.1.8]: https://github.com/CSchoel/release-notes-from-changelog/compare/v0.1.7..v0.1.8