diff --git a/CHANGES.txt b/CHANGES.txt index 081f4f2..76abc9b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,4 @@ -May 30, 2013 - v0.2.0. Added XMP UUID read support. Added jp2 boxes to rst +May 30, 2013 - v0.1.2. Added XMP UUID read support. Added jp2 boxes to rst docs, XMLBox.indent method made into a private module method. Precinct sizes restricted to be multiples of two. diff --git a/docs/source/conf.py b/docs/source/conf.py index a12c112..8d48cf2 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -73,9 +73,9 @@ copyright = u'2013, John Evans' # built documents. # # The short X.Y version. -version = '0.2' +version = '0.1' # The full version, including alpha/beta/rc tags. -release = '0.2.0' +release = '0.1.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 3f06179..97c7fb8 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,9 @@ from distutils.core import setup kwargs = {'name': 'Glymur', - 'version': '0.2.0', - 'description': 'Tools for manipulating JPEG2000 files', - 'long_description': open('README').read(), + 'version': '0.1.2', + 'description': 'Tools for accessing JPEG2000 files', + 'long_description': open('README.md').read(), 'author': 'John Evans', 'author_email': 'johnevans938 at gmail dot com', 'url': 'https://github.com/quintusdias/glymur',