From af699fedfe5caf6a70bf7ed520420a205a87c019 Mon Sep 17 00:00:00 2001 From: John Evans Date: Thu, 2 Oct 2014 08:17:48 -0400 Subject: [PATCH 1/2] updated README to mention Python 3.4 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 22338f1..bdc84d4 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,6 @@ glymur: a Python interface for JPEG 2000 **glymur** contains a Python interface to the OpenJPEG library which allows one to read and write JPEG 2000 files. **glymur** works on -Python 2.7 and 3.3. Python 3.3 is strongly recommended. +Python 2.7, 3.3, and 3.4. Please read the docs, https://glymur.readthedocs.org/en/latest/ From 454afec67bc86b87a83c8db0d71749decaf17612 Mon Sep 17 00:00:00 2001 From: John Evans Date: Thu, 2 Oct 2014 08:21:04 -0400 Subject: [PATCH 2/2] bumping to 0.7.1 --- CHANGES.txt | 2 ++ docs/source/conf.py | 2 +- glymur/version.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 2abf6d0..b61c616 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,5 @@ +Oct 02, 2014 - v0.7.1 Fixed README to mention Python 3.4 + Oct 01, 2014 - v0.7.0 Added array-style slicing. August 03, 2014 - v0.6.0 Added Cinema2K, Cinema4K write support. diff --git a/docs/source/conf.py b/docs/source/conf.py index ace116b..56a0b17 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.7' # The full version, including alpha/beta/rc tags. -release = '0.7.0' +release = '0.7.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/glymur/version.py b/glymur/version.py index 2092d4b..93171aa 100644 --- a/glymur/version.py +++ b/glymur/version.py @@ -19,7 +19,7 @@ from .lib import openjp2 as opj2 # Do not change the format of this next line! Doing so risks breaking # setup.py -version = "0.7.0" +version = "0.7.1" _sv = LooseVersion(version) version_tuple = _sv.version