From ba8831940ee8585e4eddb328161dbe7ba7728ae1 Mon Sep 17 00:00:00 2001 From: Joseph Long Date: Sun, 30 Oct 2016 10:01:38 -0400 Subject: [PATCH] Release 0.5.1 --- docs/relnotes.rst | 16 ++++++++++++++++ setup.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/docs/relnotes.rst b/docs/relnotes.rst index ef57629f..3a8080cf 100644 --- a/docs/relnotes.rst +++ b/docs/relnotes.rst @@ -46,6 +46,22 @@ Version 0.5.1 *Unreleased* +Bug fix release to solve some issues that manifested for AstroConda users. + + - Fixed a few missed version number->0.5.0 edits in install docs + - Updated install instructions for Ureka->Astroconda change + - Clarified release instructions for data packages + - Fixed ConfigParser import in setup.py + - Documented PSF normalization options better. (#112) + - Updated Travis-CI config, consistent with poppy#187 + - Made a display tweak for the primary V2V3 annotation + - Removed redundant ``calcPSF`` in favor of just using the superclass ``calc_psf`` (#132) + - Updated ``measure_strehl`` to turn off SI WFE for perfect PSF calcs + - Enforced Python 3.0+ compliance on code with ``__future__`` imports + - Used ``six.string_types`` for Python 3.x compliance + - Add version specs to dependencies in ``setup.py`` + - Made ``jwxml`` a dependency in ``setup.py`` + Version 0.5.0 ============= diff --git a/setup.py b/setup.py index fa588643..58831772 100755 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ builtins._ASTROPY_PACKAGE_NAME_ = PACKAGENAME # VERSION should be PEP386 compatible (http://www.python.org/dev/peps/pep-0386) -VERSION = '0.5.0.dev' +VERSION = '0.5.1' # Indicates if this version is a release version RELEASE = 'dev' not in VERSION