Skip to content

Commit

Permalink
Release v0.2 (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgohlke authored Nov 30, 2024
1 parent f6b96c0 commit ca6caa0
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/_static/switcher.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[
{
"name": "dev",
"version": "0.2",
"version": "0.3",
"url": "https://www.phasorpy.org/docs/dev/"
},
{
"name": "0.1 (stable)",
"version": "0.1",
"name": "0.2 (stable)",
"version": "0.2",
"url": "https://www.phasorpy.org/docs/stable/",
"preferred": true
}
Expand Down
34 changes: 34 additions & 0 deletions docs/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,40 @@ documentation and maintenance changes.
It is not nearly feature complete.
Large, backwards-incompatible changes may occur between revisions.

0.2 (2024.11.30)
----------------

This is the second alpha release of the PhasorPy library.
It fixes NaN handling in the median filter, simplifies multiple harmonic
calibration, and adds functions for spectral vector denoising and Anscombe
transformation. This release supports Python 3.10 to 3.13.

What's Changed
..............

* Bump version by @cgohlke in https://github.com/phasorpy/phasorpy/pull/132
* Add documentation version switcher config file by @cgohlke in https://github.com/phasorpy/phasorpy/pull/134
* Bump pypa/cibuildwheel from 2.20.0 to 2.21.1 in the github-actions group by @dependabot in https://github.com/phasorpy/phasorpy/pull/133
* Update FLUTE license by @cgohlke in https://github.com/phasorpy/phasorpy/pull/137
* Support Linux on AArch64 by @cgohlke in https://github.com/phasorpy/phasorpy/pull/135
* Improve private parse_harmonic function by @cgohlke in https://github.com/phasorpy/phasorpy/pull/138
* Add Anscombe transformation functions by @cgohlke in https://github.com/phasorpy/phasorpy/pull/139
* Mention PhasorPlots for dummies by @cgohlke in https://github.com/phasorpy/phasorpy/pull/140
* Simplify multiple harmonic calibration by @bruno-pannunzio in https://github.com/phasorpy/phasorpy/pull/124
* Add documentation version switcher dropdown by @cgohlke in https://github.com/phasorpy/phasorpy/pull/136
* Mention AlliGator software by @cgohlke in https://github.com/phasorpy/phasorpy/pull/141
* Bump pypa/cibuildwheel from 2.21.1 to 2.21.3 in the github-actions group by @dependabot in https://github.com/phasorpy/phasorpy/pull/144
* Add tool to print SHA256 hashes of dataset files by @cgohlke in https://github.com/phasorpy/phasorpy/pull/143
* Add Convallaria dataset by @bruno-pannunzio in https://github.com/phasorpy/phasorpy/pull/145
* Mention LIFA software by @cgohlke in https://github.com/phasorpy/phasorpy/pull/146
* Upgrade GitHub Actions to macOS-13 environment by @cgohlke in https://github.com/phasorpy/phasorpy/pull/149
* Add spectral vector denoising by @cgohlke in https://github.com/phasorpy/phasorpy/pull/148
* Replace median filter implementation for NaN handling consistency by @bruno-pannunzio in https://github.com/phasorpy/phasorpy/pull/147
* Improve median filter by @cgohlke in https://github.com/phasorpy/phasorpy/pull/150
* Release v0.2 by @cgohlke in https://github.com/phasorpy/phasorpy/pull/151

**Full Changelog**: https://github.com/phasorpy/phasorpy/compare/v0.1...v0.2

0.1 (2024.9.30)
---------------

Expand Down
2 changes: 1 addition & 1 deletion src/phasorpy/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

__version__ = '0.2.dev'
__version__ = '0.2'


def versions(
Expand Down

0 comments on commit ca6caa0

Please sign in to comment.