Skip to content

Commit

Permalink
Bump version: 0.1.5 → 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
baztian committed Apr 10, 2015
1 parent 76595b8 commit 0115fff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 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 = 0.1.5
current_version = 0.1.6
commit = True
tag = True

Expand Down
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ Changelog
=========

- Next version - unreleased
- 0.1.6 - 2015-04-10

- Fix Jython handling of Java exceptions that don't subclass python Exception

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
setup(
#basic package data
name = 'JayDeBeApi',
version = '0.1.5',
version = '0.1.6',
author = 'Bastian Bowe',
author_email = 'bastian.dev@gmail.com',
license = 'GNU LGPL',
Expand Down
2 changes: 1 addition & 1 deletion src/jaydebeapi/dbapi2.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# License along with JayDeBeApi. If not, see
# <http://www.gnu.org/licenses/>.

__version_info__ = (0, 1, 5)
__version_info__ = (0, 1, 6)
__version__ = ".".join(str(i) for i in __version_info__)

import datetime
Expand Down

0 comments on commit 0115fff

Please sign in to comment.