diff --git a/setup.py b/setup.py index 7c79f4f..0863a21 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ else: data_files = [] -setup(name='verdigris.mu-splat', version='1.5', +setup(name='verdigris.mu-splat', version='1.6', 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 c46f780..4e92ee7 100644 --- a/splat/__init__.py +++ b/splat/__init__.py @@ -23,7 +23,7 @@ __all__ = ['gen', 'data', 'filters', 'sources', 'scales', 'interpol', 'seq'] -VERSION = (1, 5) +VERSION = (1, 6) VERSION_STR = '.'.join([str(v) for v in VERSION]) BUILD = 22 diff --git a/test.py b/test.py index 8eaead9..6931114 100644 --- a/test.py +++ b/test.py @@ -32,7 +32,7 @@ import splat.seq from splat import dB2lin as dB -splat.check_version((1, 5)) +splat.check_version((1, 6)) # ----------------------------------------------------------------------------- # Splat test base class