Skip to content

Commit f2cb798

Browse files
committed
Increased version to 0.19.
1 parent f4731e7 commit f2cb798

File tree

2 files changed

+42
-1
lines changed

2 files changed

+42
-1
lines changed

VERSIONS.txt

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,44 @@
1+
================================================================================
2+
SPy 0.19
3+
================================================================================
4+
Release date: 2017.06.04
5+
6+
New Features
7+
------------
8+
9+
* Rendering functions accept an "ignore" keyword to indicate a bad data value
10+
that will be ignored when calculating color histogram stretches.
11+
12+
* Added `iterator_ij` to iterate over all pixel coordinates for a given
13+
image mask.
14+
15+
* Added `expand_binary_mask_for_window` to expand an image mask to include
16+
all pixels within a fixed size window around each masked pixel.
17+
18+
* Added support for bad band lists (bbl) in ENVI headers and suppress display
19+
of bad bands in spectral plots
20+
21+
* Added optional support for non-lowercase ENVI header parameter names.
22+
23+
Changes
24+
-------
25+
26+
* `principal_components` also accepts a `GaussianStats` object, which can
27+
avoid the need to recompute image/class statistics.
28+
29+
* Added a `SpyException` base class for package-specific exceptions.
30+
31+
Bug Fixes
32+
---------
33+
34+
* Fixed a bug that potentially produced incorrect results in `map_class_ids`
35+
(issue #53).
36+
37+
* Removed unecessary import that cause python3 compatibility error in
38+
`aviris.open` (issue #54).
39+
40+
* Removed `has_key` call breaking python3 compatibility (issue #56).
41+
142
================================================================================
243
SPy 0.18
344
================================================================================

spectral/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
from __future__ import division, print_function, unicode_literals
3333

34-
__version__ = '0.18'
34+
__version__ = '0.19'
3535

3636
import sys
3737
if sys.byteorder == 'little':

0 commit comments

Comments
 (0)