diff --git a/CITATION.cff b/CITATION.cff index 1a7058db..573a5edc 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,4 +1,4 @@ -cff-version: 1.2.0 +cff-version: 1.2.2 message: "If you use this software, please cite it as below." authors: - family-names: "Jeandet" @@ -8,7 +8,7 @@ authors: given-names: "Alexandre" orcid: "https://orcid.org/0000-0000-0000-0000" title: "Speasy" -version: 1.2.0 +version: 1.2.2 doi: 10.5281/zenodo.7995732 -date-released: 2023-10-31 +date-released: 2023-11-28 url: "https://github.com/SciQLop/speasy" diff --git a/HISTORY.rst b/HISTORY.rst index 872f6720..8e2002fc 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,16 @@ History ======= +1.2.2 (2023-11-28) +------------------ + +* Fixes https://github.com/SciQLop/speasy/issues/110, returns None instead of crash when there is no file on server by @jeandet in https://github.com/SciQLop/speasy/pull/111 + +1.2.1 (2023-11-07) +------------------ + +* Fixes non ISTP compliant files axis merging by @jeandet in https://github.com/SciQLop/speasy/pull/109 + 1.2.0 (2023-10-31) ------------------ diff --git a/VERSION b/VERSION index 6085e946..23aa8390 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.1 +1.2.2 diff --git a/docs/conf.py b/docs/conf.py index 90422acb..b9d206f0 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -125,7 +125,7 @@ # the built documents. # # The short X.Y version. -version = '1.2.1' +version = '1.2.2' # The full version, including alpha/beta/rc tags. release = version diff --git a/pyproject.toml b/pyproject.toml index 98da8b21..8ac85838 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = ["flit_core"] [project] name = 'speasy' -version = "1.2.1" +version = "1.2.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 3fad77ca..b2de51e0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.1 +current_version = 1.2.2 commit = True tag = True diff --git a/speasy/__init__.py b/speasy/__init__.py index 12a3a107..7fff815b 100644 --- a/speasy/__init__.py +++ b/speasy/__init__.py @@ -8,7 +8,7 @@ __author__ = """Alexis Jeandet""" __email__ = 'alexis.jeandet@member.fsf.org' -__version__ = '1.2.1' +__version__ = '1.2.2' __all__ = ['amda', 'cda', 'ssc', 'csa', 'get_data', 'archive', 'SpeasyVariable', 'Catalog', 'Event', 'Dataset', 'TimeTable'] __docformat__ = "numpy"