Skip to content

Commit

Permalink
Bump version: 1.0.4 → 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jeandet committed Dec 22, 2022
1 parent d52febc commit 1b6a991
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
------------------

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.4
1.0.5
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.4
current_version = 1.0.5
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion speasy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

__author__ = """Alexis Jeandet"""
__email__ = '[email protected]'
__version__ = '1.0.4'
__version__ = '1.0.5'
__all__ = ['amda', 'cda', 'ssc', 'csa', 'get_data', 'SpeasyVariable', 'Catalog', 'Event', 'Dataset', 'TimeTable']
__docformat__ = "numpy"

Expand Down

0 comments on commit 1b6a991

Please sign in to comment.