diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3515102..51af0e9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,6 @@ [bumpversion] -current_version = 0.2.1 +current_version = 0.3.0 commit = True -tag = True [bumpversion:file:setup.py] diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c865761..6f5292d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,11 @@ Changelog ========= +0.3.0 (2018-7-04) +----------------------------------------- + +* cli: added random melody generator command + 0.2.1 (2016-8-27) ----------------------------------------- diff --git a/docs/conf.py b/docs/conf.py index 4856aaf..03e29dc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ year = u'2016' author = u'Andy Craze' copyright = '{0}, {1}'.format(year, author) -version = release = u'0.2.1' +version = release = u'0.3.0' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index fcf1412..2eff1cd 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def read(*names, **kwargs): setup( name='twelve-tone', - version='0.2.1', + version='0.3.0', license='BSD', description='Twelve-tone matrix to generate dodecaphonic melodies', long_description='%s\n%s' % ( diff --git a/src/twelve_tone/__init__.py b/src/twelve_tone/__init__.py index 3ced358..493f741 100644 --- a/src/twelve_tone/__init__.py +++ b/src/twelve_tone/__init__.py @@ -1 +1 @@ -__version__ = "0.2.1" +__version__ = "0.3.0"