diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d13736c..7bac0a5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -106,16 +106,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v1 - - name: Extract release notes - id: extract-release-notes - uses: ffurrer2/extract-release-notes@v1 - - name: Create release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Update release notes + if: startsWith(github.ref, 'refs/tags/') + uses: rasmus-saks/release-a-changelog-action@v1.0.1 with: - tag_name: ${{ github.ref }} - release_name: ${{ github.ref }} - draft: false - prerelease: false - body: ${{ steps.extract-release-notes.outputs.release_notes }} + github-token: '${{ secrets.GITHUB_TOKEN }}' diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f8ac0c..48bd7c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/fastobo/fastobo-syntax/compare/v0.7.0...HEAD +[Unreleased]: https://github.com/fastobo/fastobo-syntax/compare/v0.7.2...HEAD + +## [v0.7.2] - 2022-02-11 +[v0.7.2]: https://github.com/fastobo/fastobo-syntax/compare/v0.7.1...v0.7.2 +### Fixed +- Parsing of `UrlId` with scheme other than `http`. +### Changed +- Allow escaping reserved OBO characters with backslashes in IRIs. ## [v0.7.1] - 2022-01-20 [v0.7.1]: https://github.com/fastobo/fastobo-syntax/compare/v0.7.0...v0.7.1 diff --git a/Cargo.toml b/Cargo.toml index f262390..382c271 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fastobo-syntax" -version = "0.7.1" +version = "0.7.2" authors = ["Martin Larralde "] license = "MIT" readme = "README.md"