Bump version: 1.0.0 → 1.1.0

master
baztian 2017-03-19 19:24:34 +01:00
parent e28ad464d3
commit 0e482a2052
4 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 1.0.0 current_version = 1.1.0
commit = True commit = True
tag = True tag = True

View File

@ -159,6 +159,7 @@ Changelog
========= =========
- Next version - unreleased - Next version - unreleased
- 1.1.0 - 2017-03-19
- Support BIT and TINYINT type mappings (thanks @Mokubyow for - Support BIT and TINYINT type mappings (thanks @Mokubyow for
reporting the issue). reporting the issue).

View File

@ -17,7 +17,7 @@
# License along with JayDeBeApi. If not, see # License along with JayDeBeApi. If not, see
# <http://www.gnu.org/licenses/>. # <http://www.gnu.org/licenses/>.
__version_info__ = (1, 0, 0) __version_info__ = (1, 1, 0)
__version__ = ".".join(str(i) for i in __version_info__) __version__ = ".".join(str(i) for i in __version_info__)
import datetime import datetime

View File

@ -27,7 +27,7 @@ if not sys.platform.lower().startswith('java'):
setup( setup(
#basic package data #basic package data
name = 'JayDeBeApi', name = 'JayDeBeApi',
version = '1.0.0', version = '1.1.0',
author = 'Bastian Bowe', author = 'Bastian Bowe',
author_email = 'bastian.dev@gmail.com', author_email = 'bastian.dev@gmail.com',
license = 'GNU LGPL', license = 'GNU LGPL',