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
11 changes: 11 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@ Version History
===============


Version 0.6.3 (2025-10-11):
* Drop support for numpy 1.x
* Register the colormaps ``cividis``, ``inferno``, ``magma``, ``plasma``,
``viridis``, ``RdBu``, ``coolwarm`` and their reversed versions as ``*_clip``,
e.g. ``viridis_r_clip``, with a dedicated max/min value color clipping
* Use ``viridis_clip`` colormap as default for `sfs.plot2d.level()`
* Use ``coolwarm_clip`` colormap as default for `sfs.plot2d.amplitude()`
* Level contour plot via `sfs.plot2d.level_contour()`
* Add Jupyter notebook for
`2.5D WFS referencing scheme <examples/wfs-referencing.ipynb>`__ examples

Version 0.6.2 (2021-06-05):
* build doc fix, use sphinx4, mathjax2, html_css_files

Expand Down
2 changes: 1 addition & 1 deletion sfs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
util

"""
__version__ = "0.6.2"
__version__ = "0.6.3"


class default:
Expand Down
Loading