Skip to content

Commit 1b6a991

Browse files
committed
Bump version: 1.0.4 → 1.0.5
1 parent d52febc commit 1b6a991

File tree

7 files changed

+13
-7
lines changed

7 files changed

+13
-7
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors:
88
given-names: "Alexandre"
99
orcid: "https://orcid.org/0000-0000-0000-0000"
1010
title: "Speasy"
11-
version: 1.0.4
11+
version: 1.0.5
1212
doi: 10.5281/zenodo.7397961
13-
date-released: 2022-12-05
13+
date-released: 2022-12-22
1414
url: "https://github.com/SciQLop/speasy"

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
History
33
=======
44

5+
1.0.5 (2022-12-22)
6+
------------------
7+
8+
* Drop LegacyVersion usage, fixes #78 by @jeandet in https://github.com/SciQLop/speasy/pull/79
9+
* Replaces np.float by np.float64 since it was removed in numpy 1.24 by @jeandet in https://github.com/SciQLop/speasy/pull/81
10+
511
1.0.4 (2022-12-05)
612
------------------
713

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.4
1+
1.0.5

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
# the built documents.
123123
#
124124
# The short X.Y version.
125-
version = '1.0.4'
125+
version = '1.0.5'
126126
# The full version, including alpha/beta/rc tags.
127127
release = version
128128

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ["flit_core"]
44

55
[project]
66
name = 'speasy'
7-
version = "1.0.4"
7+
version = "1.0.5"
88
description = "A simple Python package to deal with main Space Physics WebServices (CDA, CSA, AMDA and SSC)."
99
keywords= ["satellite", "plasma-physics", "nasa-data", "amda", "cdpp", "CDF"]
1010
authors = [

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.4
2+
current_version = 1.0.5
33
commit = True
44
tag = True
55

speasy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
__author__ = """Alexis Jeandet"""
1010
__email__ = 'alexis.jeandet@member.fsf.org'
11-
__version__ = '1.0.4'
11+
__version__ = '1.0.5'
1212
__all__ = ['amda', 'cda', 'ssc', 'csa', 'get_data', 'SpeasyVariable', 'Catalog', 'Event', 'Dataset', 'TimeTable']
1313
__docformat__ = "numpy"
1414

0 commit comments

Comments
 (0)