From bd53b637fe6896aa56ec9174337bbbc56f72f67e Mon Sep 17 00:00:00 2001 From: Colin Raffel Date: Fri, 6 Nov 2015 16:26:19 -0500 Subject: [PATCH] Bump version to 0.2-pre --- docs/conf.py | 4 ++-- pretty_midi/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 77f9adf..977a7ff 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '0.1' +version = '0.2-pre' # The full version, including alpha/beta/rc tags. -release = '0.1' +release = '0.2-pre' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pretty_midi/__init__.py b/pretty_midi/__init__.py index 38f5300..8fc4d69 100644 --- a/pretty_midi/__init__.py +++ b/pretty_midi/__init__.py @@ -4,4 +4,4 @@ from .utilities import * from .constants import * -__version__ = '0.1' +__version__ = '0.2-pre' diff --git a/setup.py b/setup.py index d42d5e4..291869c 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='pretty_midi', - version='0.0.1', + version='0.2-pre', description='Functions and classes for handling MIDI data conveniently.', author='Colin Raffel', author_email='craffel@gmail.com',