From 97a3868bd47c3aa3f134d34ee65e8dab21b98227 Mon Sep 17 00:00:00 2001 From: mgorsk1 Date: Mon, 19 Apr 2021 07:58:50 +0000 Subject: [PATCH] release: 0.5.0 --- CHANGELOG.md | 6 +++--- HISTORY.md | 8 ++++++++ setup.py | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab25df9..ef270eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ -#### New Features +#### Docs -* Improve typing +* Document snooker.org class ([#8](https://github.com/mgorsk1/snooker/issues/8)) -Full set of changes: [`0.3.0...0.4.0`](https://github.com/mgorsk1/snooker/compare/0.3.0...0.4.0) +Full set of changes: [`0.4.0...0.5.0`](https://github.com/mgorsk1/snooker/compare/0.4.0...0.5.0) diff --git a/HISTORY.md b/HISTORY.md index 60a2179..a7a129f 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,13 @@ # History of changes +## 0.5.0 (2021-04-19) + +#### Docs + +* Document snooker.org class ([#8](https://github.com/mgorsk1/snooker/issues/8)) + +Full set of changes: [`0.4.0...0.5.0`](https://github.com/mgorsk1/snooker/compare/0.4.0...0.5.0) + ## 0.4.0 (2021-04-16) #### New Features diff --git a/setup.py b/setup.py index f86d4b0..7a58e42 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -__version__ = '0.4.0' +__version__ = '0.5.0' requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt') readme_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'README.md')