Skip to content

Commit 587af4b

Browse files
Prepare for a 2.5.1 release
1 parent 59ed6a8 commit 587af4b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.5.0
2+
current_version = 2.5.1
33

44
[bumpversion:file:.env]
55

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fi
1111

1212
export PROJECT_NAME=$OPEN_PROJECT_NAME
1313
export PROJECT_DIR="$PWD"
14-
export PROJECT_VERSION="2.5.0"
14+
export PROJECT_VERSION="2.5.1"
1515

1616
if [ ! -d "venv" ]; then
1717
if ! hash pyvenv 2>/dev/null; then

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Ideally, within a virtual environment.
1212

1313
Changelog
1414
=========
15-
### 2.5.1 hotfix - TBD,
15+
### 2.5.1 hotfix - May 9, 2019
1616
- Fixed issue #784 - POST requests broken on 2.5.0
1717
- Optimizations and simplification of async support, taking advantadge of Python3.4 deprecation.
1818
- Fix issue #785: Empty query params are not ignored on 2.5.0

hug/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
"""
2222
from __future__ import absolute_import
2323

24-
current = "2.5.0"
24+
current = "2.5.1"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def list_modules(dirname):
7878

7979
setup(
8080
name="hug",
81-
version="2.5.0",
81+
version="2.5.1",
8282
description="A Python framework that makes developing APIs "
8383
"as simple as possible, but no simpler.",
8484
long_description=long_description,

0 commit comments

Comments
 (0)