diff --git a/CHANGELOG.md b/CHANGELOG.md index e8024c3..5bb24f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,10 +3,15 @@ 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.2...HEAD) +## [Unreleased](https://github.com/alexdlaird/hookee/compare/2.0.3...HEAD) + +## [2.0.3](https://github.com/alexdlaird/hookee/compare/2.0.2...2.0.3) - 2021-03-02 ### Changed - Migrated build from Travis CI to GitHub Actions. +### Fixed +- Build improvements. + ## [2.0.2](https://github.com/alexdlaird/hookee/compare/2.0.0...2.0.2) - 2020-12-28 ### Fixed - Build improvements. diff --git a/hookee/hookeemanager.py b/hookee/hookeemanager.py index c6aacb1..23d28c6 100644 --- a/hookee/hookeemanager.py +++ b/hookee/hookeemanager.py @@ -10,8 +10,8 @@ from hookee.util import PrintUtil __author__ = "Alex Laird" -__copyright__ = "Copyright 2020, Alex Laird" -__version__ = "2.0.2" +__copyright__ = "Copyright 2021, Alex Laird" +__version__ = "2.0.3" class HookeeManager: diff --git a/setup.py b/setup.py index 9837869..d122ce0 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,8 @@ from setuptools import setup __author__ = "Alex Laird" -__copyright__ = "Copyright 2020, Alex Laird" -__version__ = "2.0.2" +__copyright__ = "Copyright 2021, Alex Laird" +__version__ = "2.0.3" with open("README.md", "r") as f: long_description = f.read()