Skip to content

Commit

Permalink
Bump version 2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycrosley committed Sep 18, 2018
1 parent a6f9b16 commit 9cac911
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.2.0
current_version = 2.4.1

[bumpversion:file:.env]

Expand Down
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion hug/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
"""
from __future__ import absolute_import

current = "2.4.0"
current = "2.4.1"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 9cac911

Please sign in to comment.