From 9d7884c4f6691f98b6d200edd2c6608738909d3f Mon Sep 17 00:00:00 2001 From: Timothy Crosley Date: Sun, 7 Apr 2019 10:00:20 -0700 Subject: [PATCH] Bump version --- .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 e0782c10..0c098fb6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.4.7 +current_version = 2.4.8 [bumpversion:file:.env] diff --git a/.env b/.env index 11308709..ecc7e458 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.7" +export PROJECT_VERSION="2.4.8" if [ ! -d "venv" ]; then if ! hash pyvenv 2>/dev/null; then diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dec927a..f0b60300 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ Ideally, within a virtual environment. Changelog ========= -### 2.4.8 - TBD +### 2.4.8 - April 7, 2019 - Fixed issue #762 - HTTP errors crash with selectable output types - Fixed MacOS testing via travis - added testing accross all the same Python versions tested on Linux diff --git a/hug/_version.py b/hug/_version.py index ffba2818..922de651 100644 --- a/hug/_version.py +++ b/hug/_version.py @@ -21,4 +21,4 @@ """ from __future__ import absolute_import -current = "2.4.7" +current = "2.4.8" diff --git a/setup.py b/setup.py index 48dc9cb2..59cd55c0 100755 --- a/setup.py +++ b/setup.py @@ -75,7 +75,7 @@ def list_modules(dirname): setup( name='hug', - version='2.4.7', + version='2.4.8', description='A Python framework that makes developing APIs ' 'as simple as possible, but no simpler.', long_description=long_description,