From b698731833e720306c6ec502edba24e3c0274dd0 Mon Sep 17 00:00:00 2001 From: Thomas Boggs Date: Sun, 19 Oct 2014 11:48:15 -0400 Subject: [PATCH] Version updated to 0.16.0 --- VERSIONS.txt | 39 +++++++++++++++++++++++++++++++++++++++ spectral/__init__.py | 2 +- 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/VERSIONS.txt b/VERSIONS.txt index ab0bfba..77c9629 100644 --- a/VERSIONS.txt +++ b/VERSIONS.txt @@ -1,3 +1,42 @@ +================================================================================ +SPy 0.16.0 +================================================================================ +Release date: 2014.10.18 + +New Features +------------ + +* Adaptive Coherence/Cosine Estimator (ACE) target detector + +* Pixel Purity Index (PPI) + +* Adjustable linear color stretches (based on data limits or cumulative histogram) + +* Ability to save ENVI Classification files (thanks to @ohspite) + +* `ImageView` class has `set_title` method + +Changes +------- + +* `imshow` image displays use a linear 2% color stretch by default (can + override this in `spectral.settings`) + +* Limited Python 3 compatibility (all functions except `view_cube` and `view_nd`) supported + +* `get_rgb` handles bands with no variation (color set to min value) + +* Modified `view_nd` to support change in PyOpenGL API + +Bug Fixes +--------- + +* [Issue #16] Incorrect handling of alternate file extensions in `envi.save_image` + +* [Issue #11] Incorrect handling of unsigned byte data type in ENVI files + +* [Issue #13] As of version 1.9, `numpy` no longer provides `oldnumeric` submodule + ================================================================================ SPy 0.15.0 ================================================================================ diff --git a/spectral/__init__.py b/spectral/__init__.py index 5a5065b..3f0a12a 100644 --- a/spectral/__init__.py +++ b/spectral/__init__.py @@ -31,7 +31,7 @@ from __future__ import division, print_function, unicode_literals -__version__ = '0.16.dev-1' +__version__ = '0.16.0' import sys if sys.byteorder == 'little':