Skip to content

Commit 7063451

Browse files
committed
Add changelog for 0.7.1
1 parent 944c99f commit 7063451

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

docs/release_notes.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Release notes
22
=============
33

4+
Changes from 0.7.0 to 0.7.1
5+
---------------------------
6+
7+
- Fix use of ``expand`` in ``.as_dataframe()`` for ``AUX_OBS``
8+
49
Changes from 0.6.2 to 0.7.0
510
---------------------------
611

viresclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@
3535
from ._api.upload import DataUpload
3636
from ._api.token import TokenManager
3737

38-
__version__ = "0.7.1-alpha.1"
38+
__version__ = "0.7.1"

viresclient/_client_swarm.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,9 @@ def _csv_to_df(csv_data):
817817
"SW_OPER_AUX_OBSS2_"
818818
]
819819
if collection not in obs_collections:
820-
raise ValueError(f"Invalid collection: {collection}")
820+
raise ValueError(
821+
f"Invalid collection: {collection}. Must be one of: {obs_collections}."
822+
)
821823
if start_time and end_time:
822824
start_time = parse_datetime(start_time)
823825
end_time = parse_datetime(end_time)

0 commit comments

Comments
 (0)