diff --git a/CHANGELOG.md b/CHANGELOG.md index ebfb8e9..7283aa9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.16.3 (2022-03-17) +### Fix +* **scraper:** Correct centre logic and allow searching after current ([`1c4d65b`](https://github.com/2e0byo/YADC/commit/1c4d65b30a7394cf3904486df96ca857f9228ba2)) + ## v0.16.2 (2022-03-16) ### Fix * Only notify once. ([`28cb7f5`](https://github.com/2e0byo/YADC/commit/28cb7f50cb440dba520501e4c82cbe755c78b409)) diff --git a/pyproject.toml b/pyproject.toml index 1ddc7c7..a99cadc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "yadc" -version = "0.16.2" +version = "0.16.3" description = "Yet Another DVSA Cancellation checker" authors = ["John Maximilian <2e0byo@gmail.com>"] license = "MIT" diff --git a/yadc/__init__.py b/yadc/__init__.py index ef3dba8..c3c64c0 100644 --- a/yadc/__init__.py +++ b/yadc/__init__.py @@ -2,4 +2,4 @@ coloredlogs.install() -__version__ = "0.16.2" +__version__ = "0.16.3"