diff --git a/HISTORY.rst b/HISTORY.rst index 4d227c07..692987b7 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,14 +2,39 @@ History ======= +0.8.2 (2021-04-20) +================== + +* sscweb trajectories are always in km + +0.8.1 (2021-04-18) +================== + +* Fixes minimum request duration for sscweb + +0.8.0 (2021-04-18) +================== + +* Full support for trajectories and 0.2 proxy version + +0.7.2 (2020-11-13) +================== + +* ccsweb/proxy: Fix missing coordinate system parameter + +0.7.1 (2020-11-13) +================== + +* Fix project URL on PyPi + 0.7.0 (2020-11-13) ------------------- +================== * SSCWEB support to get satellites trajectories. * Few bug fixes. * Totally disabled cdf support for now. 0.1.0 (2019-12-07) ------------------- +================== * First release on PyPI. diff --git a/VERSION b/VERSION index 6f4eebdf..100435be 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.1 +0.8.2 diff --git a/setup.cfg b/setup.cfg index e1c216db..845a8b89 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.1 +current_version = 0.8.2 commit = True tag = True diff --git a/setup.py b/setup.py index 33e20513..5c3063da 100644 --- a/setup.py +++ b/setup.py @@ -52,6 +52,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/SciQLop/spwc', - version='0.8.1', + version='0.8.2', zip_safe=False, ) diff --git a/spwc/__init__.py b/spwc/__init__.py index 739c0a9f..bf923837 100644 --- a/spwc/__init__.py +++ b/spwc/__init__.py @@ -4,7 +4,7 @@ __author__ = """Alexis Jeandet""" __email__ = 'alexis.jeandet@member.fsf.org' -__version__ = '0.8.1' +__version__ = '0.8.2' from .common.variable import SpwcVariable from .amda import AMDA