From 83c46ff1eb909a2bb16e12c1307465c8f4870463 Mon Sep 17 00:00:00 2001 From: Alexis Jeandet Date: Tue, 18 Jun 2024 11:46:39 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.3.1=20=E2=86=92=201.3.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CITATION.cff | 2 +- VERSION | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- setup.cfg | 2 +- speasy/__init__.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 04ecff6..0269e68 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -8,7 +8,7 @@ authors: given-names: "Alexandre" orcid: "https://orcid.org/0009-0009-7151-8089" title: "Speasy" -version: 1.3.1 +version: 1.3.2 doi: 10.5281/zenodo.11517646 date-released: 2024-06-07 url: "https://github.com/SciQLop/speasy" diff --git a/VERSION b/VERSION index 3a3cd8c..1892b92 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.1 +1.3.2 diff --git a/docs/conf.py b/docs/conf.py index 9bbb1cc..15cead5 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -122,7 +122,7 @@ # the built documents. # # The short X.Y version. -version = '1.3.1' +version = '1.3.2' # The full version, including alpha/beta/rc tags. release = version diff --git a/pyproject.toml b/pyproject.toml index 179bb7e..6cdf3c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = ["flit_core"] [project] name = 'speasy' -version = "1.3.1" +version = "1.3.2" 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 1571b5e..b35c290 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.1 +current_version = 1.3.2 commit = True tag = True diff --git a/speasy/__init__.py b/speasy/__init__.py index 512a01f..e5b5ba6 100644 --- a/speasy/__init__.py +++ b/speasy/__init__.py @@ -8,7 +8,7 @@ __author__ = """Alexis Jeandet""" __email__ = 'alexis.jeandet@member.fsf.org' -__version__ = '1.3.1' +__version__ = '1.3.2' __all__ = ['amda', 'cda', 'ssc', 'csa', 'get_data', 'archive', 'SpeasyVariable', 'Catalog', 'Event', 'Dataset', 'TimeTable'] __docformat__ = "numpy"