Skip to content

Commit

Permalink
Release v0.10.15
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Oct 8, 2024
1 parent 127d95a commit 274cee3
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,8 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1

release:
permissions: write-all
permissions:
contents: write
environment: GitHub Releases
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/v')"
Expand All @@ -239,7 +240,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Release a Changelog
uses: rasmus-saks/release-a-changelog-action@v1.0.1
uses: rasmus-saks/release-a-changelog-action@v1.2.0
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'

Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
[Unreleased]: https://github.com/althonos/pyhmmer/compare/v0.10.14...HEAD


## [v0.10.15] - 2024-10-08
[v0.10.15]: https://github.com/althonos/pyhmmer/compare/v0.10.14...v0.10.15

### Added
- `query` property `TopHits` referencing the original object used to create the `TopHits` [#76](https://github.com/althonos/pyhmmer/issues/76).

### Changed
- Require the query object to create a `TopHits` object.
- Make `TopHits` generic over its `query` property.
- Deprecate old query properties of `TopHits` (`query_name`, `query_length`, `query_accession`).

### Removed
- Detection of SSE flush from `setup.py` ([#71](https://github.com/althonos/pyhmmer/issues/71)).


## [v0.10.14] - 2024-07-16
[v0.10.14]: https://github.com/althonos/pyhmmer/compare/v0.10.13...v0.10.14

Expand Down
2 changes: 1 addition & 1 deletion pyhmmer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

__author__ = "Martin Larralde <[email protected]>"
__license__ = "MIT"
__version__ = "0.10.14"
__version__ = "0.10.15"
__all__ = [
"errors",
"easel",
Expand Down

0 comments on commit 274cee3

Please sign in to comment.