Skip to content

Commit f82d0a2

Browse files
committed
Bump version: 1.0.0 → 1.0.1
1 parent f945141 commit f82d0a2

File tree

6 files changed

+17
-8
lines changed

6 files changed

+17
-8
lines changed

HISTORY.rst

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

5+
1.0.1 (2022-10-06)
6+
------------------
7+
8+
* several documentation improvements
9+
* SpeasyVaraible can be sliced with numpy.datetime64
10+
* comparing SpeasyVaraible with NaNs works as expected now (ignore NaNs)
11+
* fixes cda inventory issue where some datasets were missing
12+
* speasy loading time reduction by only downloading inventory from proxy if it has changed
13+
514
1.0.0 (2022-09-25)
615
------------------
716

@@ -20,7 +29,7 @@ Since last release, a lot of new features has landed:
2029
* SpeasyVariable object has been rewritten to better handle ND data and provide nice slicing features
2130

2231
From now upcoming releases will mostly fix bugs, extend plotting API and follow web-services evolution.
23-
32+
2433
0.10.0 (2022-02-03)
2534
-------------------
2635

@@ -29,10 +38,10 @@ From now upcoming releases will mostly fix bugs, extend plotting API and follow
2938
* Adds dynamic inventory for AMDA and SSC
3039
* Adds possibility to set config values from ENV
3140
* Drops Python 3.6 support and adds 3.10
32-
* New API documentation using numpydoc
41+
* New API documentation using numpydoc
3342
* New user documentation using numpydoc
3443
* Most code examples are tested with doctest
35-
* Renames SSCWeb module get_orbit to get_trajectory
44+
* Renames SSCWeb module get_orbit to get_trajectory
3645

3746
0.9.1 (2021-11-25)
3847
------------------

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0
1+
1.0.1

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.0'
125+
version = '1.0.1'
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.0"
7+
version = "1.0.1"
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.0
2+
current_version = 1.0.1
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__ = '[email protected]'
11-
__version__ = '1.0.0'
11+
__version__ = '1.0.1'
1212
__all__ = ['amda', 'cda', 'ssc', 'get_data', 'SpeasyVariable', 'Catalog', 'Event', 'Dataset', 'TimeTable']
1313
__docformat__ = "numpy"
1414

0 commit comments

Comments
 (0)