From 1809b133ffa8d578a4db9acb69f1c10282c802b9 Mon Sep 17 00:00:00 2001 From: Alex Laird Date: Mon, 8 Mar 2021 10:35:42 -0800 Subject: [PATCH] Fixing issue in README. --- CHANGELOG.md | 4 ++-- README.md | 2 +- hookee/hookeemanager.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40b372e..cf306f3 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.5...HEAD) +## [Unreleased](https://github.com/alexdlaird/hookee/compare/2.0.6...HEAD) -## [2.0.5](https://github.com/alexdlaird/hookee/compare/2.0.3...2.0.5) - 2021-03-08 +## [2.0.6](https://github.com/alexdlaird/hookee/compare/2.0.3...2.0.6) - 2021-03-08 ### Fixed - Build improvements. diff --git a/README.md b/README.md index 471626d..f4916d1 100644 --- a/README.md +++ b/README.md @@ -62,5 +62,5 @@ API integrations, and more, see its official documentation is available at [http If you would like to get involved, be sure to review the [Contribution Guide](https://github.com/alexdlaird/hookee/blob/main/CONTRIBUTING.rst). -Want to contribute financially? If you've found `hookee` useful, [a donation](https://www.paypal.me/alexdlaird>) would +Want to contribute financially? If you've found `hookee` useful, [a donation](https://www.paypal.me/alexdlaird) would also be greatly appreciated! diff --git a/hookee/hookeemanager.py b/hookee/hookeemanager.py index c0f7d2e..c7da46e 100644 --- a/hookee/hookeemanager.py +++ b/hookee/hookeemanager.py @@ -11,7 +11,7 @@ __author__ = "Alex Laird" __copyright__ = "Copyright 2021, Alex Laird" -__version__ = "2.0.5" +__version__ = "2.0.6" class HookeeManager: diff --git a/setup.py b/setup.py index c6f498a..d53dbef 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ __author__ = "Alex Laird" __copyright__ = "Copyright 2021, Alex Laird" -__version__ = "2.0.5" +__version__ = "2.0.6" with open("README.md", "r") as f: long_description = f.read()