From 1b6a991b2742c2f3e12a697c49aed465738ae34e Mon Sep 17 00:00:00 2001 From: Alexis Jeandet Date: Thu, 22 Dec 2022 09:00:46 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.4=20=E2=86=92=201.0.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CITATION.cff | 4 ++-- HISTORY.rst | 6 ++++++ VERSION | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- setup.cfg | 2 +- speasy/__init__.py | 2 +- 7 files changed, 13 insertions(+), 7 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index e6b3de30..4ecd6f45 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -8,7 +8,7 @@ authors: given-names: "Alexandre" orcid: "https://orcid.org/0000-0000-0000-0000" title: "Speasy" -version: 1.0.4 +version: 1.0.5 doi: 10.5281/zenodo.7397961 -date-released: 2022-12-05 +date-released: 2022-12-22 url: "https://github.com/SciQLop/speasy" diff --git a/HISTORY.rst b/HISTORY.rst index 15c0cab3..b9fcbcf9 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,12 @@ History ======= +1.0.5 (2022-12-22) +------------------ + +* Drop LegacyVersion usage, fixes #78 by @jeandet in https://github.com/SciQLop/speasy/pull/79 +* Replaces np.float by np.float64 since it was removed in numpy 1.24 by @jeandet in https://github.com/SciQLop/speasy/pull/81 + 1.0.4 (2022-12-05) ------------------ diff --git a/VERSION b/VERSION index ee90284c..90a27f9c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.4 +1.0.5 diff --git a/docs/conf.py b/docs/conf.py index 84169350..a2f4978e 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -122,7 +122,7 @@ # the built documents. # # The short X.Y version. -version = '1.0.4' +version = '1.0.5' # The full version, including alpha/beta/rc tags. release = version diff --git a/pyproject.toml b/pyproject.toml index 00817625..ef403420 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = ["flit_core"] [project] name = 'speasy' -version = "1.0.4" +version = "1.0.5" description = "A simple Python package to deal with main Space Physics WebServices (CDA, CSA, AMDA and SSC)." keywords= ["satellite", "plasma-physics", "nasa-data", "amda", "cdpp", "CDF"] authors = [ diff --git a/setup.cfg b/setup.cfg index 3dc251f6..9b8bf4c8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.4 +current_version = 1.0.5 commit = True tag = True diff --git a/speasy/__init__.py b/speasy/__init__.py index 00cadefe..46a660e4 100644 --- a/speasy/__init__.py +++ b/speasy/__init__.py @@ -8,7 +8,7 @@ __author__ = """Alexis Jeandet""" __email__ = 'alexis.jeandet@member.fsf.org' -__version__ = '1.0.4' +__version__ = '1.0.5' __all__ = ['amda', 'cda', 'ssc', 'csa', 'get_data', 'SpeasyVariable', 'Catalog', 'Event', 'Dataset', 'TimeTable'] __docformat__ = "numpy"