diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 716e3a8..85a6c51 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,34 @@ Release Notes .. towncrier release notes start +1.3.2 (2024-10-11) +------------------ + +Bug Fixes +````````` + +- Fixed failing NetCDF tests related to a now non-existant THREDDS server. (`#150 `_) +- Fixed the *environment.yml* file needed for running notebooks on Binder. (`#153 `_) + + +Other Changes and Additions +``````````````````````````` + +- Fixed broken environment-docs.yml file. (`#145 `_) +- Fixed the successful, but 0%, coverage score reported by Coveralls through the coveralls-python Action. (`#146 `_) +- Reformat code for the newest version of *black*. (`#154 `_) +- Setup `towncrier `_ to manage the changelog. (`#155 `_) +- Moved static project metadata into pyproject.toml. (`#156 `_) +- Removed dependency on ``six`` since we don't support Python 2 and updated code + to use Python 3.8+ syntax. (`#159 `_) +- Updated *pymt* for the latest version of *gimli.units*, which changed + its interface slightly. (`#169 `_) +- Removed a bunch of lint that had built up over the years. (`#170 `_) +- Added support for Python 3.10, and dropped support for older versions. (`#171 `_) +- Updated *pymt* to work with the newest version of both *shapely* and + *scipy*. (`#174 `_) + + 1.3.1 (2021-03-18) ------------------ diff --git a/news/145.misc b/news/145.misc deleted file mode 100644 index 3c766dd..0000000 --- a/news/145.misc +++ /dev/null @@ -1,2 +0,0 @@ -Fixed broken environment-docs.yml file. - diff --git a/news/146.misc b/news/146.misc deleted file mode 100644 index 3fa3382..0000000 --- a/news/146.misc +++ /dev/null @@ -1,2 +0,0 @@ -Fixed the successful, but 0%, coverage score reported by Coveralls through the coveralls-python Action. - diff --git a/news/150.bugfix b/news/150.bugfix deleted file mode 100644 index 696fd54..0000000 --- a/news/150.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Fixed failing NetCDF tests related to a now non-existant THREDDS server. - diff --git a/news/153.bugfix b/news/153.bugfix deleted file mode 100644 index d3cb404..0000000 --- a/news/153.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Fixed the *environment.yml* file needed for running notebooks on Binder. - diff --git a/news/154.misc b/news/154.misc deleted file mode 100644 index 2b03520..0000000 --- a/news/154.misc +++ /dev/null @@ -1,2 +0,0 @@ -Reformat code for the newest version of *black*. - diff --git a/news/155.misc b/news/155.misc deleted file mode 100644 index 787c40e..0000000 --- a/news/155.misc +++ /dev/null @@ -1,2 +0,0 @@ -Setup `towncrier `_ to manage the changelog. - diff --git a/news/156.misc b/news/156.misc deleted file mode 100644 index f49321e..0000000 --- a/news/156.misc +++ /dev/null @@ -1,2 +0,0 @@ -Moved static project metadata into pyproject.toml. - diff --git a/news/159.misc b/news/159.misc deleted file mode 100644 index 007b4d7..0000000 --- a/news/159.misc +++ /dev/null @@ -1,3 +0,0 @@ -Removed dependency on ``six`` since we don't support Python 2 and updated code -to use Python 3.8+ syntax. - diff --git a/news/169.misc.rst b/news/169.misc.rst deleted file mode 100644 index d7df66c..0000000 --- a/news/169.misc.rst +++ /dev/null @@ -1,2 +0,0 @@ -Updated *pymt* for the latest version of *gimli.units*, which changed -its interface slightly. diff --git a/news/171.misc.rst b/news/171.misc.rst deleted file mode 100644 index 8dea16f..0000000 --- a/news/171.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Added support for Python 3.10, and dropped support for older versions. diff --git a/news/174.misc.rst b/news/174.misc.rst deleted file mode 100644 index 805ebd6..0000000 --- a/news/174.misc.rst +++ /dev/null @@ -1,2 +0,0 @@ -Updated *pymt* to work with the newest version of both *shapely* and -*scipy*. diff --git a/pymt/_version.py b/pymt/_version.py index 0196c1d..f708a9b 100644 --- a/pymt/_version.py +++ b/pymt/_version.py @@ -1 +1 @@ -__version__ = "1.3.2.dev0" +__version__ = "1.3.2"