From 61a5497ba74abcdf5d559211591cc43c08e8a608 Mon Sep 17 00:00:00 2001 From: jevans Date: Thu, 15 Aug 2013 20:28:15 -0400 Subject: [PATCH] Bumping for 0.3.2 release. --- CHANGES.txt | 3 +++ docs/source/conf.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index cc297ba..bba1195 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,6 @@ +Aug 15, 2013 - v0.3.2 Fixed test bug where missing Pillow package caused test + failures. + Aug 14, 2013 - v0.3.1 Exposed mantissa, exponent, and guard_bits fields in QCC and QCD segments. Exposed layers and code_block_size in COD segment. Exposed precinct_size in COC segment. diff --git a/docs/source/conf.py b/docs/source/conf.py index 573ddd5..cf140a3 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.3' # The full version, including alpha/beta/rc tags. -release = '0.3.1' +release = '0.3.2' # 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 ac05b8d..5cd8376 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import sys kwargs = {'name': 'Glymur', - 'version': '0.3.1', + 'version': '0.3.2', 'description': 'Tools for accessing JPEG2000 files', 'long_description': open('README.md').read(), 'author': 'John Evans',