Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version release 1.5.0 #947

Merged
merged 4 commits into from
Dec 9, 2024
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
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ abstract: >-
including its Wide Field Instrument and a preliminary
version of the Coronagraph Instrument.
license: BSD-3-Clause
version: 1.4.0
version: 1.5.0
44 changes: 44 additions & 0 deletions docs/relnotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,50 @@ Version History and Change Log
-------------------------------


Version 1.5.0
=============
*2024 December*
WebbPSF IS BEING MIGRATED TO A NEW REPOSITORY: STPSF (Space Telescope PSF)
To reflect its broader support for Roman as well as James Webb, WebbPSF is being migrated to a new repository: STPSF (Space Telescope PSF).
This transition is being done in such a way as to maintain back-compatibility for existing code, and existing installations will continue to run as-is.
This release will be among the final releases to WebbPSF and the initial release to STPSF.

This release requires new data webbpsf-data-1.5.0 https://stsci.box.com/s/oyoih9ibuaowksxzaia02ua4t6g1bbp1
For more information on this new data please view https://github.com/spacetelescope/webbpsf/pull/937

Copy link
Collaborator

@obi-wan76 obi-wan76 Dec 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would add another note that this release comes with a new data as well, So users need to download webbpsf-data 1.5 as well. We can mention PR 937 for more details about what changed in webbpsf-data

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

**What's Changed**
* Add IFU+datacubes docs page. by @mperrin in https://github.com/spacetelescope/webbpsf/pull/917

* Update for Photutils 2.0 by @mperrin in https://github.com/spacetelescope/webbpsf/pull/925

* MNT: Use hash for Action workflow versions and update if needed by @pllim in https://github.com/spacetelescope/webbpsf/pull/916

* Dependabot updates PLUS pyproject upper limit for photutils. by @dependabot in https://github.com/spacetelescope/webbpsf/pull/926

* update ifu docs to describe about coord_system and pixel scale by @mperrin in https://github.com/spacetelescope/webbpsf/pull/923

* update photutils upper bound by @BradleySappington in https://github.com/spacetelescope/webbpsf/pull/935

* Add automatic data download by @WilliamJamieson in https://github.com/spacetelescope/webbpsf/pull/932

* switch a test case float comparison to np.allclose for robustness by @mperrin in https://github.com/spacetelescope/webbpsf/pull/934

* Add support for new sensing point and target phase map by @obi-wan76 in https://github.com/spacetelescope/webbpsf/pull/937

* Minor update to docs about the WFI optical model by @Skyhawk172 in https://github.com/spacetelescope/webbpsf/pull/936

* update monthly trending plot to allow shifted date ranges by @mperrin in https://github.com/spacetelescope/webbpsf/pull/943

* Readme advise by @BradleySappington in https://github.com/spacetelescope/webbpsf/pull/944

* update MAST query for OPDs to also retrieve OPDs from FP6 by @mperrin in https://github.com/spacetelescope/webbpsf/pull/945

## New Contributors
* @WilliamJamieson made their first contribution in https://github.com/spacetelescope/webbpsf/pull/932

**Full Changelog**: https://github.com/spacetelescope/webbpsf/compare/v1.4.0...1.5.0


Version 1.4.0
=============

Expand Down
2 changes: 1 addition & 1 deletion webbpsf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class UnsupportedPythonError(Exception):
# required. If changes to the code and data mean WebbPSF won't work
# properly with an old data package, increment this version number.
# (It's checked against $WEBBPSF_DATA/version.txt)
DATA_VERSION_MIN = (1, 4, 0)
DATA_VERSION_MIN = (1, 5, 0)


class Conf(_config.ConfigNamespace):
Expand Down
Loading