Bump version: 0.1.5 → 0.1.6
parent
df9ad6408b
commit
5b8be2b0fb
|
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 0.1.5
|
||||
current_version = 0.1.6
|
||||
commit = True
|
||||
tag = True
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -30,7 +30,7 @@ print find_packages('src')
|
|||
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',
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue