Skip to content

Commit

Permalink
Release v2.0.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Oct 22, 2022
1 parent aba7b68 commit ad85a90
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Package
on:
push:
tags:
- v*.*.*
- v*

jobs:

Expand Down
19 changes: 17 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,23 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


## [Unreleased]
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v1.1.2...HEAD
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v2.0.0-rc.1...HEAD


## [v2.0.0-rc.1] - 2022-10-22
[v2.0.0-rc.1]: https://github.com/althonos/pyrodigal/compare/v1.1.2...v2.0.0-rc.1

### Added
- MMX implementation of the SIMD prefilter.
- Propert GFF headers and metadata section to GFF output.

### Fixed
- Out of bound access to sequence data in `Sequence._shine_dalgarno_mm` and `Sequence._shine_dalgarno_exact`.
- Gene identifier being used instead of the sequence identifier in the GFF output ([#18](https://github.com/althonos/pyrodigal/issues/18)).

### Changed
- Rewrite SIMD prefilter using a generic template with C macros.
- Make all write methods of `Genes` objects require a ``sequence_id`` argument instead of using the internal sequence number.


## [v1.1.2] - 2022-08-31
Expand All @@ -20,7 +36,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Configuration of platform-specific NEON flags in `setup.py` not being applied to the linker.



## [v1.1.1] - 2022-07-08
[v1.1.1]: https://github.com/althonos/pyrodigal/compare/v1.1.0...v1.1.1

Expand Down
8 changes: 4 additions & 4 deletions pyrodigal/_pyrodigal.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -3209,7 +3209,7 @@ cdef class Genes:
Returns:
`int`: The number of bytes written to the file.
.. versionchanged:: 1.2.0
.. versionchanged:: 2.0.0
Replaced optional``prefix`` argument with ``sequence_id``.
"""
Expand Down Expand Up @@ -3286,7 +3286,7 @@ cdef class Genes:
Returns:
`int`: The number of bytes written to the file.
.. versionchanged:: 1.2.0
.. versionchanged:: 2.0.0
Replaced optional``prefix`` argument with ``sequence_id``.
"""
Expand Down Expand Up @@ -3333,7 +3333,7 @@ cdef class Genes:
Returns:
`int`: The number of bytes written to the file.
.. versionchanged:: 1.2.0
.. versionchanged:: 2.0.0
Replaced optional``prefix`` argument with ``sequence_id``.
"""
Expand Down Expand Up @@ -3381,7 +3381,7 @@ cdef class Genes:
.. versionadded:: 0.7.0
.. versionadded:: 1.2.0
.. versionadded:: 2.0.0
The ``sequence_id`` argument.
"""
Expand Down
2 changes: 1 addition & 1 deletion pyrodigal/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.2"
__version__ = "2.0.0-rc.1"

0 comments on commit ad85a90

Please sign in to comment.