From 8fd840299a85d8117d50288320ee4c8a7aaf5093 Mon Sep 17 00:00:00 2001 From: nicholasc Date: Tue, 23 Apr 2019 22:19:39 +0000 Subject: [PATCH] GH-588 0.16.3 release --- CHANGELOG.md | 7 +++++++ RELEASE_INSTRUCTIONS.md | 2 ++ allensdk/__init__.py | 2 +- doc_template/index.rst | 13 +++++++------ 4 files changed, 17 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f4073b22..b2f84fc10 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/RELEASE_INSTRUCTIONS.md b/RELEASE_INSTRUCTIONS.md index 0b38f9569..8b7e0514a 100644 --- a/RELEASE_INSTRUCTIONS.md +++ b/RELEASE_INSTRUCTIONS.md @@ -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 diff --git a/allensdk/__init__.py b/allensdk/__init__.py index 556561156..b451c641f 100644 --- a/allensdk/__init__.py +++ b/allensdk/__init__.py @@ -35,7 +35,7 @@ # import logging -__version__ = '0.16.2' +__version__ = '0.16.3' try: from logging import NullHandler diff --git a/doc_template/index.rst b/doc_template/index.rst index ed64be3a5..ffe9e6427 100644 --- a/doc_template/index.rst +++ b/doc_template/index.rst @@ -90,20 +90,21 @@ The Allen SDK provides Python code for accessing experimental metadata along wit See the `mouse connectivity section `_ 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 `_ pip no longer fails on new conda environment because of tables + * `#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 `_ Transforms for tissuecyte registration accessible from allensdk + * `#661 `_ Update example notebooks Previous Release Notes ---------------------- + * `0.16.2 `_ * `0.16.1 `_ * `0.16.0 `_ * `0.14.5 `_