diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ba8e7a6c..5cb23c2a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.2.0 +current_version = 2.4.1 [bumpversion:file:.env] diff --git a/.env b/.env index f0cc11d4..c3a4f14d 100644 --- a/.env +++ b/.env @@ -11,7 +11,7 @@ fi export PROJECT_NAME=$OPEN_PROJECT_NAME export PROJECT_DIR="$PWD" -export PROJECT_VERSION="2.4.0" +export PROJECT_VERSION="2.4.1" if [ ! -d "venv" ]; then if ! hash pyvenv 2>/dev/null; then diff --git a/CHANGELOG.md b/CHANGELOG.md index 47731556..663f4d1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,14 +13,16 @@ Ideally, within a virtual environment. Changelog ========= -### 2.4.0 - Sep 17, 2018 +### 2.4.1 - Sep 17, 2018 +- Fixed issue #631: Added support for Python 3.7 +- Fixed issue #665: Fixed problem with hug.types.json +- Fixed issue #679: Return docs for marshmallow schema instead of for dump method + +### 2.4.0 - Jan 31, 2018 - Updated Falcon requirement to 1.4.1 - Fixed issue #590: Textual output formats should have explicitly defined charsets by default - Fixed issue #596: Host argument for development runner - Fixed issue #563: Added middleware to handle CORS requests -- Fixed issue #631: Added support for Python 3.7 -- Fixed issue #665: Fixed problem with hug.types.json -- Fixed issue #679: Return docs for marshmallow schema instead of for dump method - Implemented issue #612: Add support for numpy types in JSON output by default - Implemented improved class based directives with cleanup support (see: https://github.com/timothycrosley/hug/pull/603) - Support ujson if installed diff --git a/hug/_version.py b/hug/_version.py index d8f3660c..b83a4997 100644 --- a/hug/_version.py +++ b/hug/_version.py @@ -21,4 +21,4 @@ """ from __future__ import absolute_import -current = "2.4.0" +current = "2.4.1" diff --git a/setup.py b/setup.py index 018866aa..42b71045 100755 --- a/setup.py +++ b/setup.py @@ -87,7 +87,7 @@ def list_modules(dirname): readme = '' setup(name='hug', - version='2.4.0', + version='2.4.1', description='A Python framework that makes developing APIs as simple as possible, but no simpler.', long_description=readme, author='Timothy Crosley',