bump version

This commit is contained in:
Michael Zanetti 2020-03-05 19:52:49 +01:00
parent a894d27a18
commit b715c2788f
2 changed files with 10 additions and 4 deletions

6
debian/changelog vendored
View File

@ -1,4 +1,10 @@
nymea (0.20.0) UNRELEASED; urgency=medium
-- Michael Zanetti <michael.zanetti@guh.io> Thu, 05 Mar 2020 19:52:05 +0100
nymea (0.19.0) xenial; urgency=medium
[ Michael Zanetti ]
* Delete devices before plugin destruction
* Cleanup Rule definition in introspection

View File

@ -1221,8 +1221,8 @@
"params": {
},
"returns": {
"connected": "Bool",
"connectionState": "$ref:CloudConnectionState"
"connectionState": "$ref:CloudConnectionState",
"d:connected": "Bool"
}
},
"JSONRPC.KeepAlive": {
@ -1259,11 +1259,11 @@
"JSONRPC.SetNotificationStatus": {
"description": "Enable/Disable notifications for this connections. Either \"enabled\" or \"namespaces\" needs to be given but not both of them. The boolean based \"enabled\" parameter will enable/disable all notifications at once. If instead the list-based \"namespaces\" parameter is provided, all given namespaceswill be enabled, the others will be disabled. The return value of \"success\" will indicate success of the operation. The \"enabled\" property in the return value is deprecated and used for legacy compatibilty only. It will be set to true if at least one namespace has been enabled.",
"params": {
"o:enabled": "Bool",
"d:o:enabled": "Bool",
"o:namespaces": "StringList"
},
"returns": {
"enabled": "Bool",
"d:enabled": "Bool",
"namespaces": "StringList"
}
},