begin using bumpversion.

This commit is contained in:
Friedrich Lindenberg 2018-05-29 22:12:48 +03:00
parent 2b2813c7fe
commit 6d1f42f48c
3 changed files with 12 additions and 2 deletions

9
.bumpversion.cfg Normal file
View File

@ -0,0 +1,9 @@
[bumpversion]
current_version = 1.0.8
tag_name = {new_version}
commit = True
tag = True
[bumpversion:file:setup.py]
[bumpversion:file:dataset/__init__.py]

View File

@ -11,6 +11,7 @@ warnings.filterwarnings(
'ignore', 'Skipping unsupported ALTER for creation of implicit constraint') 'ignore', 'Skipping unsupported ALTER for creation of implicit constraint')
__all__ = ['Database', 'Table', 'freeze', 'connect'] __all__ = ['Database', 'Table', 'freeze', 'connect']
__version__ = '1.0.8'
def connect(url=None, schema=None, reflect_metadata=True, engine_kwargs=None, def connect(url=None, schema=None, reflect_metadata=True, engine_kwargs=None,

View File

@ -41,7 +41,7 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = u'dataset' project = u'dataset'
copyright = u'2013-2015, Friedrich Lindenberg, Gregor Aisch, Stefan Wehrmeyer' copyright = u'2013-2018, Friedrich Lindenberg, Gregor Aisch, Stefan Wehrmeyer'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
@ -50,7 +50,7 @@ copyright = u'2013-2015, Friedrich Lindenberg, Gregor Aisch, Stefan Wehrmeyer'
# The short X.Y version. # The short X.Y version.
version = '1.0' version = '1.0'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '1.0.0' release = '1.0.8'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.