We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3d2b96 commit b36e03cCopy full SHA for b36e03c
2 files changed
CHANGELOG.md
@@ -1,5 +1,12 @@
1
# DataLab Simple Client Releases #
2
3
+## Version 0.10.1 ##
4
+
5
+🛠️ Bug fixes:
6
7
+* Fixed `get_version` method in `SimpleRemoteProxy` to handle server versions
8
+ with a development suffix (e.g. `0.14.dev0`)
9
10
## Version 0.10.0 ##
11
12
DataLab Simple Client is fully compatible with **DataLab 0.14.2** and above.
cdlclient/__init__.py
@@ -14,7 +14,7 @@
14
from cdlclient.baseproxy import SimpleBaseProxy # noqa: F401
15
from cdlclient.remote import SimpleRemoteProxy # noqa: F401
16
17
-__version__ = "0.11.0"
+__version__ = "0.10.1"
18
__required_server_version__ = "0.14.2"
19
__docurl__ = "https://cdlclient.readthedocs.io/en/latest/"
20
__homeurl__ = "https://github.com/DataLab-Platform/DataLabSimpleClient/"
0 commit comments