diff --git a/CHANGES.txt b/CHANGES.txt index b8c6f05..b935fba 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,6 @@ +Jun 06, 2013 - v0.1.5 Changed ColourSpecificationBox attribute "color_space" + to "colorspace". Fixed MANIFEST issue affecting PyPI installs. + Jun 05, 2013 - v0.1.4 Added Exif UUID read support. Jun 02, 2013 - v0.1.3p1 Raising IOErrors when code block size and precinct diff --git a/docs/source/conf.py b/docs/source/conf.py index 0d630c6..fe4de6d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -78,7 +78,7 @@ copyright = u'2013, John Evans' # The short X.Y version. version = '0.1' # The full version, including alpha/beta/rc tags. -release = '0.1.4' +release = '0.1.5' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 5febec4..962111b 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from distutils.core import setup kwargs = {'name': 'Glymur', - 'version': '0.1.4', + 'version': '0.1.5', 'description': 'Tools for accessing JPEG2000 files', 'long_description': open('README.md').read(), 'author': 'John Evans',