Skip to content

Commit

Permalink
Release v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Oct 21, 2024
1 parent eec8d98 commit 3e981e5
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 4 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


## [Unreleased]
[Unreleased]: https://github.com/althonos/pyfastani/compare/v0.5.1...HEAD
[Unreleased]: https://github.com/althonos/pyfastani/compare/v0.6.0...HEAD


## [v0.6.0] - 2024-10-22
[v0.6.0]: https://github.com/althonos/pyfastani/compare/v0.5.1...v0.6.0

### Changed
- Rewrite package build using `scikit-build-core`.
- Update documentation to use the PyData theme.
- Bump embedded `cpu-features` library to `v0.9.0`.

### Added
- Support for Python 3.13.

### Fixed
- Null pointer dereference in FASTA parser deallocation.

### Removed
- Support for Python 3.6.


## [v0.5.1] - 2024-02-20
Expand Down
7 changes: 6 additions & 1 deletion docs/_static/json/switcher.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
[
{
"name": "v0.5 (latest)",
"name": "v0.6 (latest)",
"version": "0.6.0",
"url": "https://pytantan.readthedocs.io/en/v0.6.0/"
},
{
"name": "v0.5",
"version": "0.5.1",
"url": "https://pytantan.readthedocs.io/en/v0.5.1/"
},
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "pyfastani"
version = "0.5.1"
version = "0.6.0"
description = "Cython bindings and Python interface to FastANI, a method for fast whole-genome similarity estimation."
readme = "README.md"
requires-python = ">=3.7"
Expand Down
2 changes: 1 addition & 1 deletion src/pyfastani/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

__author__ = "Martin Larralde <[email protected]>"
__license__ = "MIT"
__version__ = "0.5.1"
__version__ = "0.6.0"

__doc__ = _fastani.__doc__
__all__ = [
Expand Down

0 comments on commit 3e981e5

Please sign in to comment.