Skip to content

Commit 4ae4d7f

Browse files
committed
Starting 0.10.1
1 parent 8318acf commit 4ae4d7f

File tree

3 files changed

+38
-2
lines changed

3 files changed

+38
-2
lines changed

CHANGES.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## Changes in 0.10.1 (in development)
2+
3+
### Enhancements
4+
5+
### Fixes
6+
7+
### Other Changes
8+
9+
* For compatibility, now also `xcube.__version__` now contains the xcube
10+
version number.
11+
12+
113
## Changes in 0.10.0
214

315
### Incompatible Changes
@@ -7,7 +19,7 @@
719
must now be assigned to `Path`, which is a mandatory parameter.
820
`Path` may contain wildcard characters \*\*, \*, ?.
921
`Identifier` is now optional, the default is
10-
`"${store_id}~${data_id}`. If given, it should only be used to
22+
`"${store_id}~${data_id}"`. If given, it should only be used to
1123
uniquely identify single datasets within a data store
1224
pointed to by `Path`. (#516)
1325

xcube/__init__.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# The MIT License (MIT)
2+
# Copyright (c) 2022 by the xcube development team and contributors
3+
#
4+
# Permission is hereby granted, free of charge, to any person obtaining a copy of
5+
# this software and associated documentation files (the "Software"), to deal in
6+
# the Software without restriction, including without limitation the rights to
7+
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
8+
# of the Software, and to permit persons to whom the Software is furnished to do
9+
# so, subject to the following conditions:
10+
#
11+
# The above copyright notice and this permission notice shall be included in all
12+
# copies or substantial portions of the Software.
13+
#
14+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20+
# SOFTWARE.
21+
22+
from .version import version
23+
24+
__version__ = version

xcube/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2020
# SOFTWARE.
2121

22-
version = '0.10.0'
22+
version = '0.10.1.dev0'

0 commit comments

Comments
 (0)