From 7590fb5f8eb2931bd2aadafec75869928d039cd7 Mon Sep 17 00:00:00 2001 From: Bradley Sappington Date: Tue, 17 Dec 2024 14:17:03 -0500 Subject: [PATCH] release 2.0.0 --- CITATION.cff | 2 +- docs/relnotes.rst | 6 ++++++ stpsf/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 60afca4..4083be6 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -56,4 +56,4 @@ abstract: >- including its Wide Field Instrument and a preliminary version of the Coronagraph Instrument. license: BSD-3-Clause -version: 1.5.1 +version: 2.0.0 diff --git a/docs/relnotes.rst b/docs/relnotes.rst index 926b6fd..9f379e6 100644 --- a/docs/relnotes.rst +++ b/docs/relnotes.rst @@ -28,6 +28,12 @@ Version 2.0.0 *2024 December* Ready for Production Release All versions before 1.5.1 were part of the WebbPSF repository +**What's Changed** +* Final migration before version 2.0.0 by @BradleySappington in https://github.com/spacetelescope/stpsf/pull/46 +* Test readthedocs by @BradleySappington in https://github.com/spacetelescope/stpsf/pull/47 + + +**Full Changelog**: https://github.com/spacetelescope/stpsf/compare/v1.5.2...2.0.0 Version 1.5.2 ============= diff --git a/stpsf/__init__.py b/stpsf/__init__.py index 746645d..66d539c 100644 --- a/stpsf/__init__.py +++ b/stpsf/__init__.py @@ -40,7 +40,7 @@ class UnsupportedPythonError(Exception): # required. If changes to the code and data mean STPSF won't work # properly with an old data package, increment this version number. # (It's checked against $STPSF_DATA/version.txt) -DATA_VERSION_MIN = (1, 5, 2) +DATA_VERSION_MIN = (2, 0, 0) class Conf(_config.ConfigNamespace):