From 24fcd336d35461b05e707ae72a155f7a7f7d10e2 Mon Sep 17 00:00:00 2001 From: Joris Snellenburg Date: Thu, 18 Mar 2021 21:23:17 +0100 Subject: [PATCH] Prepare v0.3.3 release (#603) * Prepare v0.3.3 release Bumped version and added release notes * Update readme Clarified Python version support --- HISTORY.rst | 13 ++++++++++++- README.md | 2 +- glotaran/__init__.py | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 54ca03665..fd860c44b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,18 @@ History ======= -0.3.1 (2021-02-23) +0.3.3 (2021-03-18) +------------------ +* Force recalculation of SVD attributes in scheme._prepare_data (#597) +* Remove unneeded check in spectral_penalties._get_area Fixes (#598) +* Added python 3.9 support (#450) + +0.3.2 (2021-02-28) +------------------ + +* Re-release of version 0.3.1 due to packaging issue + +0.3.1 (2021-02-28) ------------------ * Added compatibility for numpy 1.20 and raised minimum required numpy version to 1.20 (#555) diff --git a/README.md b/README.md index 86d449f7c..93b01dbf3 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ pyGloTarAn is a Python library for Global and Target Analysis Prerequisites: -- Python 3.8 (Python 3.9+ is not supported in this release) +- Python 3.8 (Python 3.9 is only supported as of v0.3.3) - On Windows only 64bit is supported Note for Windows Users: The easiest way to get python for Windows is via [Anaconda](https://www.anaconda.com/) diff --git a/glotaran/__init__.py b/glotaran/__init__.py index 2ad830373..4d8a7da2f 100644 --- a/glotaran/__init__.py +++ b/glotaran/__init__.py @@ -3,7 +3,7 @@ from . import io from . import parameter -__version__ = "0.3.2" +__version__ = "0.3.3" ParameterGroup = parameter.ParameterGroup