diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e5d58e..8545376 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,9 +3,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased](https://github.com/alexdlaird/hookee/compare/2.0.1...HEAD) +## [Unreleased](https://github.com/alexdlaird/hookee/compare/2.0.2...HEAD) -## [2.0.1](https://github.com/alexdlaird/hookee/compare/2.0.0...2.0.1) - 2020-10-25 +## [2.0.2](https://github.com/alexdlaird/hookee/compare/2.0.0...2.0.2) - 2020-12-28 ### Fixed - Build improvements. - Changelog improvements. diff --git a/hookee/hookeemanager.py b/hookee/hookeemanager.py index b8471dc..c6aacb1 100644 --- a/hookee/hookeemanager.py +++ b/hookee/hookeemanager.py @@ -11,7 +11,7 @@ __author__ = "Alex Laird" __copyright__ = "Copyright 2020, Alex Laird" -__version__ = "2.0.1" +__version__ = "2.0.2" class HookeeManager: diff --git a/setup.py b/setup.py index fe063f0..9837869 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ __author__ = "Alex Laird" __copyright__ = "Copyright 2020, Alex Laird" -__version__ = "2.0.1" +__version__ = "2.0.2" with open("README.md", "r") as f: long_description = f.read()