diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b3a74d3..4377007 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.4.1 +current_version = 2.4.2 commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 63ce980..52839d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,13 +11,19 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Ch ### New ### Changes -* Remove support for Python 3.6 ### Fixes ### Breaks +## 2.4.2 - (2021-12-09) +--- + +### Changes +* Remove support for Python 3.6 + + ## 2.4.1 - (2021-07-05) --- diff --git a/pyproject.toml b/pyproject.toml index 68803fa..a9ebf58 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tabler" -version = "2.4.1" +version = "2.4.2" description = "Simple interface for tabulated data and .csv files" authors = ["Luke Shiner "] license = "MIT" diff --git a/tabler/__version__.py b/tabler/__version__.py index 9d76b89..6acc356 100644 --- a/tabler/__version__.py +++ b/tabler/__version__.py @@ -3,8 +3,8 @@ __title__ = "tabler" __description__ = "Simple interface for tabulated data and .csv files" __url__ = "http://github.com/lukeshiner/tabler.git" -__version__ = "2.4.1" +__version__ = "2.4.2" __author__ = "Luke Shiner" __author_email__ = "luke@lukeshiner.com" __license__ = "MIT" -__copyright__ = "Copyright 2018 Luke Shiner" +__copyright__ = "Copyright 2021 Luke Shiner"