From 4801e1d0522d1f3c341752a238deb6e56f36384d Mon Sep 17 00:00:00 2001 From: Timothy Crosley Date: Mon, 25 Mar 2019 22:24:01 -0700 Subject: [PATCH] Bump version to 2.4.6 --- .bumpversion.cfg | 2 +- .env | 2 +- CHANGELOG.md | 2 +- hug/_version.py | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f15edb22..d6a25a71 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.4.5 +current_version = 2.4.6 [bumpversion:file:.env] diff --git a/.env b/.env index a92dd495..dff052fb 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.5" +export PROJECT_VERSION="2.4.6" if [ ! -d "venv" ]; then if ! hash pyvenv 2>/dev/null; then diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b879938..fa62c25a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ Ideally, within a virtual environment. Changelog ========= -### 2.4.5 - March 25, 2019 +### 2.4.6 - March 25, 2019 - Fixed issue #753 - 404 not found does not respect default output format. - Documented the `--without-cython` option in `CONTRIBUTING.md` - Extended documentation for output formats diff --git a/hug/_version.py b/hug/_version.py index 5217fecd..85d39a45 100644 --- a/hug/_version.py +++ b/hug/_version.py @@ -21,4 +21,4 @@ """ from __future__ import absolute_import -current = "2.4.5" +current = "2.4.6" diff --git a/setup.py b/setup.py index 6aaf8b0d..d756c7f9 100755 --- a/setup.py +++ b/setup.py @@ -75,7 +75,7 @@ def list_modules(dirname): setup( name='hug', - version='2.4.5', + version='2.4.6', description='A Python framework that makes developing APIs ' 'as simple as possible, but no simpler.', long_description=long_description,