Skip to content

Commit

Permalink
Bump version to 2.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycrosley committed Feb 6, 2020
1 parent 7bb7cec commit 16aa0a3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 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.6.0
current_version = 2.6.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.6.0"
export PROJECT_VERSION="2.6.1"

if [ ! -d "venv" ]; then
if ! hash pyvenv 2>/dev/null; then
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ Ideally, within a virtual environment.

Changelog
=========
### 2.6.1 - February 6, 2019
- Fixed issue #834: Bug in some cases when introspecting local documentation.

### 2.6.0 - August 29, 2019
- Improved CLI multiple behaviour with empty defaults
- Improved CLI type output for built-in types
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.6.0"
current = "2.6.1"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def list_modules(dirname):

setup(
name="hug",
version="2.6.0",
version="2.6.1",
description="A Python framework that makes developing APIs "
"as simple as possible, but no simpler.",
long_description=long_description,
Expand Down

0 comments on commit 16aa0a3

Please sign in to comment.