diff --git a/setup.py b/setup.py index 441127d..37bd288 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ except ImportError: from distutils.core import setup, Extension -setup(name='verdigris.mu-splat', version='1.3', +setup(name='verdigris.mu-splat', version='1.4', description="Sound generator, synthesizer and editor", author="Guillaume Tucker", author_email="guillaume@mangoz.org", diff --git a/splat/__init__.py b/splat/__init__.py index 22154fc..39cf1f0 100644 --- a/splat/__init__.py +++ b/splat/__init__.py @@ -23,7 +23,7 @@ __all__ = ['gen', 'data', 'filters', 'sources', 'scales', 'interpol'] -VERSION = (1, 3) +VERSION = (1, 4) VERSION_STR = '.'.join([str(v) for v in VERSION]) BUILD = 14 diff --git a/test.py b/test.py index 6a42343..481de1b 100644 --- a/test.py +++ b/test.py @@ -30,7 +30,7 @@ import splat.interpol import splat.scales -splat.check_version((1, 3)) +splat.check_version((1, 4)) # ----------------------------------------------------------------------------- # Splat test base class