diff --git a/CHANGELOG.md b/CHANGELOG.md index 2445228..43e9076 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v3.0.1 (2022-02-15) +### Fix +* **pipeline.py:** Correct filters of jaccard ([`5679713`](https://github.com/IMS-Bio2Core-Facility/lta/commit/5679713f3eeb6cb083cb502b44868c8b018b036d)) + ## v3.0.0 (2022-02-14) ### Fix * **pipeline.py:** Filter jaccard calculations ([`ba0f97b`](https://github.com/IMS-Bio2Core-Facility/lta/commit/ba0f97bfc258f384186064dd8613af44ff0ac270)) diff --git a/docs/conf.py b/docs/conf.py index 8a0a617..5838105 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,7 +12,7 @@ project = "LTA" author = "Ryan B Patterson-Cross" copyright = "2021, IMS-MRL Bioinformatics and Biostatistic Core" -version = "3.0.0" +version = "3.0.1" extensions = [ "sphinx_rtd_theme", "sphinx.ext.autodoc", diff --git a/lta/__init__.py b/lta/__init__.py index beeb112..5686abf 100644 --- a/lta/__init__.py +++ b/lta/__init__.py @@ -7,4 +7,4 @@ The version number, specified in the form 'major.minor.patch' """ -__version__ = "3.0.0" +__version__ = "3.0.1" diff --git a/pyproject.toml b/pyproject.toml index b3fd989..08e8860 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "LipidTA" -version = "3.0.0" +version = "3.0.1" packages=[{include = "lta"}] description = "Lipid Traffic Analysis" license = "MIT"