diff --git a/CHANGELOG.md b/CHANGELOG.md index 7283aa9..6412f8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.16.4 (2022-03-18) +### Fix +* **scraper:** Type before -> not_before. ([`2850ecb`](https://github.com/2e0byo/YADC/commit/2850ecb1ca48804d4cfee3e1d47d36612a4d2261)) + ## v0.16.3 (2022-03-17) ### Fix * **scraper:** Correct centre logic and allow searching after current ([`1c4d65b`](https://github.com/2e0byo/YADC/commit/1c4d65b30a7394cf3904486df96ca857f9228ba2)) diff --git a/pyproject.toml b/pyproject.toml index a99cadc..8c2035e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "yadc" -version = "0.16.3" +version = "0.16.4" 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 c3c64c0..bbd3432 100644 --- a/yadc/__init__.py +++ b/yadc/__init__.py @@ -2,4 +2,4 @@ coloredlogs.install() -__version__ = "0.16.3" +__version__ = "0.16.4"