Browse Source

Version 2.1.1

zolfa-add_slices_loading
jim 8 years ago
parent
commit
19c45ed952
3 changed files with 6 additions and 2 deletions
  1. +4
    -0
      CHANGELOG.md
  2. +1
    -1
      nd2reader/__init__.py
  3. +1
    -1
      setup.py

+ 4
- 0
CHANGELOG.md View File

@ -1,3 +1,7 @@
## [2.1.1] - 2016-02-15
### FIXED
- `Image` objects behave properly when passed to numpy functions. Things like `np.mean` will now return scalar values as expected, instead of `Image` objects
## [2.1.0] - 2016-01-16
### ADDED
- `select` now supports `start` and `stop` keyword arguments to put bounds on images


+ 1
- 1
nd2reader/__init__.py View File

@ -1,3 +1,3 @@
from nd2reader.main import Nd2
__version__ = '2.1.0'
__version__ = '2.1.1'

+ 1
- 1
setup.py View File

@ -1,6 +1,6 @@
from setuptools import setup
VERSION = '2.1.0'
VERSION = '2.1.1'
if __name__ == '__main__':
setup(


Loading…
Cancel
Save