diff --git a/CHANGES.rst b/CHANGES.rst index e5e35eb..32a975b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,29 @@ https://holospy.readthedocs.io/en/latest/changes.html .. towncrier release notes start +0.2 (2024-04-04) +================ + +Deprecations +------------ + +- The positional arguments ``holo_data`` and ``holo_sampling`` of :func:`~.reconstruct.reconstruct` have been renamed to ``data`` and ``sampling``, respectively. (`#26 `_) + + +Improved Documentation +---------------------- + +- Add holoSpy logo (`#26 `_) + + +Maintenance +----------- + +- Use ruff for linting and formatting; check NPY2011. (`#28 `_) +- Fix numpy 1.25 deprecation. (`#29 `_) +- Enable numpydoc and nitpicky; fix docstrings. (`#30 `_) + + 0.1.1 (2023-12-02) ================== diff --git a/pyproject.toml b/pyproject.toml index 43ba6f4..0682ad7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -103,7 +103,7 @@ include = ["holospy*"] [tool.setuptools_scm] # Presence enables setuptools_scm, the version will be determine at build time from git # The version will be updated by the `prepare_release.py` script -fallback_version = "0.2.dev0" +fallback_version = "0.3.dev0" [tool.towncrier] directory = "upcoming_changes/" diff --git a/upcoming_changes/26.deprecation.rst b/upcoming_changes/26.deprecation.rst deleted file mode 100644 index a73f514..0000000 --- a/upcoming_changes/26.deprecation.rst +++ /dev/null @@ -1 +0,0 @@ -The positional arguments ``holo_data`` and ``holo_sampling`` of :func:`~.reconstruct.reconstruct` have been renamed to ``data`` and ``sampling``, respectively. diff --git a/upcoming_changes/26.doc.rst b/upcoming_changes/26.doc.rst deleted file mode 100644 index efa04c3..0000000 --- a/upcoming_changes/26.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Add holoSpy logo diff --git a/upcoming_changes/28.maintenance.rst b/upcoming_changes/28.maintenance.rst deleted file mode 100644 index cc54982..0000000 --- a/upcoming_changes/28.maintenance.rst +++ /dev/null @@ -1 +0,0 @@ -Use ruff for linting and formatting; check NPY2011. \ No newline at end of file diff --git a/upcoming_changes/29.maintenance.rst b/upcoming_changes/29.maintenance.rst deleted file mode 100644 index d5144ea..0000000 --- a/upcoming_changes/29.maintenance.rst +++ /dev/null @@ -1 +0,0 @@ -Fix numpy 1.25 deprecation. diff --git a/upcoming_changes/30.maintenance.rst b/upcoming_changes/30.maintenance.rst deleted file mode 100644 index 5d77073..0000000 --- a/upcoming_changes/30.maintenance.rst +++ /dev/null @@ -1 +0,0 @@ -Enable numpydoc and nitpicky; fix docstrings. \ No newline at end of file