diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e521b1b..dba8756 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,10 @@ +**1.1.0** + +- Adds ``newick`` output format, available on the build and search CLI commands +- Adds progress reporting powered by `tqdm`_ for taxonomy download, reading, building and searching +- Adds CLI tests, improves tree tests and increases test coverage overall +- Some other improvements and updates to `README.rst`_ + **1.0.0** - First major release 🎉 @@ -86,3 +93,4 @@ .. _Poetry: https://python-poetry.org/ .. _CONTRIBUTING.rst: CONTRIBUTING.rst .. _README.rst: README.rst +.. _tqdm: https://github.com/tqdm/tqdm \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index f9e43c7..e6b036c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "taxonomy-resolver" -version = "1.0.0" +version = "1.1.0" description = "Taxonomy Resolver builds NCBI Taxonomy Trees and lists of Taxonomy Identifiers (TaxIDs) based on the NCBI Taxonomy Database" authors = ["Fábio Madeira "] readme = "README.rst" diff --git a/taxonomyresolver/__init__.py b/taxonomyresolver/__init__.py index e1fabd9..eb598e2 100644 --- a/taxonomyresolver/__init__.py +++ b/taxonomyresolver/__init__.py @@ -10,7 +10,7 @@ __author__ = "Fábio Madeira" __email__ = "fmadeira@ebi.ac.uk" -__version__ = "1.0.0" +__version__ = "1.1.0" __contributors__ = ["Fábio Madeira"] from taxonomyresolver.tree import TaxonResolver