diff --git a/CHANGELOG.md b/CHANGELOG.md index ddbde4e..a2587f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.7.0 (2023-04-30) +### Feature +* :bug: Sort list of plates first ([`c7168b1`](https://github.com/iandday/whichPlates/commit/c7168b15a1ab3a2f5f46a1a5b92868074356980b)) + ## v0.6.0 (2023-04-29) ### Feature * Typo ([`afe7601`](https://github.com/iandday/whichPlates/commit/afe760187eec2168006d808344ef9c00c8ddf5b6)) diff --git a/pyproject.toml b/pyproject.toml index b602d98..3b88023 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "which_plates" -version = "0.6.0" +version = "0.7.0" description = "" authors = ["Ian Day "] readme = "README.md" diff --git a/src/which_plates/__init__.py b/src/which_plates/__init__.py index 991be8c..94119ac 100644 --- a/src/which_plates/__init__.py +++ b/src/which_plates/__init__.py @@ -8,4 +8,4 @@ "calc_plates", "main", ] -__version__ = "0.6.0" +__version__ = "0.7.0"