Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log
All notable changes to this project will be documented in this file.

## [0.16.3] = 2019-5-22

### Bug Fixes
- https://github.com/AllenInstitute/AllenSDK/issues/660 Use pillow/Image.resize instead of scipy.misc.imresize
- https://github.com/AllenInstitute/AllenSDK/issues/659 Same
- https://github.com/AllenInstitute/AllenSDK/issues/661 Update example notebooks

## [0.16.2] = 2019-4-23

### Added
Expand Down
2 changes: 2 additions & 0 deletions RELEASE_INSTRUCTIONS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
### While preparing a release:

- [ ] Create a Release Epic on ZenHub that will track the release issues and pull requests
- [ ] Create a "release candidate" branch (i.e. rc/0.16.2), and push to main fork (https://github.com/AllenInstitute/AllenSDK)
- [ ] Create a draft pull request for the release (i.e. Release Candidate 0.16.2)
- [ ] Assign this draft PR to the Release Epic
- [ ] Assign a developer to be responsible for the release deployment
- [ ] Add the Project Owner as a reviewer
- [ ] Copy this checklist into the draft pull request description
Expand Down
2 changes: 1 addition & 1 deletion allensdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#
import logging

__version__ = '0.16.2'
__version__ = '0.16.3'

try:
from logging import NullHandler
Expand Down
13 changes: 7 additions & 6 deletions doc_template/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,20 +90,21 @@ The Allen SDK provides Python code for accessing experimental metadata along wit

See the `mouse connectivity section <connectivity.html>`_ for more details.

What's New - Release 0.16.2 (April 23, 2019)
What's New - Release 0.16.3 (May 22, 2019)
-----------------------------------------------

The 0.16.2 release stabilizes the dependency issues introduced by tables
The 0.16.3 release resolves changes to the api of a dependency that resizes an image:

* `#523 <https://github.com/AllenInstitute/AllenSDK/issues/523>`_ pip no longer fails on new conda environment because of tables
* `#659 <https://github.com/AllenInstitute/AllenSDK/issues/659>`_ Use pillow/Image.resize instead of scipy.misc.imresize

We also went back and made sure that the example Jupyter notebooks still run:

We also now provide access support for the deformable and affine transformations computed by the TissueCyte registration code:

* `#549 <https://github.com/AllenInstitute/AllenSDK/issues/549>`_ Transforms for tissuecyte registration accessible from allensdk
* `#661 <https://github.com/AllenInstitute/AllenSDK/issues/661>`_ Update example notebooks

Previous Release Notes
----------------------

* `0.16.2 <https://github.com/AllenInstitute/AllenSDK/wiki/Release-Notes-(0.16.2)>`_
* `0.16.1 <https://github.com/AllenInstitute/AllenSDK/wiki/Release-Notes-(0.16.1)>`_
* `0.16.0 <https://github.com/AllenInstitute/AllenSDK/wiki/Release-Notes-(0.16.0)>`_
* `0.14.5 <https://github.com/AllenInstitute/AllenSDK/wiki/Release-Notes-(0.14.5)>`_
Expand Down