diff --git a/.release b/.release index 65b19ebeead68eafd0f1ef0a3d5443f62b70dba2..79932ec25b045f4fa1a26bb7d214c401ff78790e 100644 --- a/.release +++ b/.release @@ -1,2 +1,2 @@ -release=0.9.1 -tag=ska_tango_base-0.9.1 +release=0.10.0 +tag=ska_tango_base-0.10.0 diff --git a/README.md b/README.md index 47c6a4bc46f6d4e5085587dde08a7ab336ffc389..cc34052ba2f246dc5ba2b47ac31a700ffd0237fb 100644 --- a/README.md +++ b/README.md @@ -25,10 +25,15 @@ The ska-tango-base repository includes a set of eight classes as mentioned in SK ## Version History -#### (next release) -- Add `DebugDevice` command to `SKABaseDevice`. This will allow remote debugging to be +#### 0.10.0 +- Add `DebugDevice` command to `SKABaseDevice`. This allows remote debugging to be enabled on all devices. It cannot be disabled without restarting the process. - + If there are multiple devices in a device server, debugging is only enabled for + the requested device (i.e., methods patched for debugging cppTango threads). + However, all Python threads (not cppTango threads), will also be debuggable, + even if created by devices other than the one that was used to enable debugging. + There is only one debugger instance shared by the whole process. + #### 0.9.1 - Changed dependency from `ska_logging` to `ska_ser_logging`. diff --git a/src/ska_tango_base/release.py b/src/ska_tango_base/release.py index a3970d425784bca074cc7697719b5167fabff71f..6e60c36d97062f11c2303d32e4d1f2b65093a31e 100644 --- a/src/ska_tango_base/release.py +++ b/src/ska_tango_base/release.py @@ -7,7 +7,7 @@ """Release information for ska_tango_base Python Package""" name = """ska_tango_base""" -version = "0.9.1" +version = "0.10.0" version_info = version.split(".") description = """A set of generic base devices for SKA Telescope.""" author = "SKA India and SARAO and CSIRO and INAF"