From e74253ce52e2528a89b59223207e7986f677cc80 Mon Sep 17 00:00:00 2001 From: Mark Jones Date: Fri, 11 Jun 2021 10:25:19 -0400 Subject: [PATCH] Update PyPWA to 3.2.2 Updates the Changelog with the small handful of patches between 3.2.1 and 3.2.2, as well as updates the version information for the package. --- CHANGELOG.md | 11 ++++++++++- PyPWA/info.py | 2 +- setup.py | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36aa2d6b..ac60a7d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All changes important to the user will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/) +## [3.2.2] - 2021-6-11 +### Fixed +- Particles can now be masked again, the mask is no longer silently deleted + when passed to the object. +- Numpy's warning about numpy.float being deprecation should be resolved. +- Any warnings about the LaTeX in the Likelihood's Docstrings being + deprecated should be resolved as well. + ## [3.2.1] - 2021-6-10 ### Fixed - Gamp no longer combines particles with the same ID @@ -194,7 +202,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/) - PySim plugin - Packaging -[Unreleased]: https://github.com/JeffersonLab/PyPWA/compare/v3.2.1...main +[Unreleased]: https://github.com/JeffersonLab/PyPWA/compare/v3.2.2...main +[3.2.2]: https://github.com/JeffersonLab/PyPWA/compare/v3.2.1...3.2.2 [3.2.1]: https://github.com/JeffersonLab/PyPWA/compare/v3.2.0...v3.2.1 [3.2.0]: https://github.com/JeffersonLab/PyPWA/compare/v3.1.0...v3.2.0 [3.1.0]: https://github.com/JeffersonLab/PyPWA/compare/v3.0.0...v3.1.0 diff --git a/PyPWA/info.py b/PyPWA/info.py index 2896e109..0d4481bd 100644 --- a/PyPWA/info.py +++ b/PyPWA/info.py @@ -91,7 +91,7 @@ __credits__ = ["Mark Jones"] AUTHOR = "PyPWA Team and Contributors" -VERSION = "3.2.1" +VERSION = "3.2.2" RELEASE = f"{VERSION}" LICENSE = "GPLv3" STATUS = "development" diff --git a/setup.py b/setup.py index ee383ef4..8ce965e1 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ __author__ = "PyPWA Team and Contributors" __license__ = "GPLv3" -__version__ = "3.2.1" +__version__ = "3.2.2" __email__ = "pypwa@jlab.org" __status__ = "development"