From 7e896e5962461cb93599eab7769a3547fef7212c Mon Sep 17 00:00:00 2001 From: Martin Larralde <martin.larralde@embl.de> Date: Sun, 13 Jun 2021 23:18:55 +0200 Subject: [PATCH] Release v0.1.1 --- CHANGELOG.md | 8 +++++++- pyfastani/__init__.py | 2 +- pyfastani/_fastani.pyx | 3 ++- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9158952..3422790 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.1.1...HEAD + +## [v0.1.1] - 2021-06-13 +[v0.1.1]: https://github.com/althonos/pyrodigal/compare/v0.1.0...v0.1.1 + +### Fixed +- Source distribution missing Cython and C++ sources, thus preventing compilation. ## [v0.1.0] - 2021-06-13 diff --git a/pyfastani/__init__.py b/pyfastani/__init__.py index a5e7171..a8b0ec8 100644 --- a/pyfastani/__init__.py +++ b/pyfastani/__init__.py @@ -3,7 +3,7 @@ from ._fastani import Mapper, Hit __author__ = "Martin Larralde <martin.larralde@embl.de>" __license__ = "MIT" -__version__ = "0.1.0" +__version__ = "0.1.1" __all__ = ["Mapper", "Hit"] __doc__ = _fastani.__doc__ diff --git a/pyfastani/_fastani.pyx b/pyfastani/_fastani.pyx index 11ce28a..6f2749a 100644 --- a/pyfastani/_fastani.pyx +++ b/pyfastani/_fastani.pyx @@ -1,6 +1,7 @@ # coding: utf-8 # cython: language_level=3, linetrace=True, language=cpp - +"""Bindings to FastANI, a method for fast whole-genome similarity estimation. +""" # --- C imports -------------------------------------------------------------- -- GitLab