Release v2.2.0rc1

pull/1643/head v2.2.0rc1
grossmj 5 years ago
parent df9f717d7c
commit 27d447c926

@ -1,5 +1,13 @@
# Change Log
## 2.2.0rc1 10/08/2019
* Bump jsonschema to version 3.0.2
* List Hyper-V VMs on non-english OSes. Fixes #1612
* Add missing default values in Cloud schema.
* Release 2019.2.0-alpha.5
* Fix redirection to web-ui bundled server
## 2.2.0b4 11/07/2019
* Requires a project to be opened to start/stop/suspend all nodes. Fixes #1609

@ -58,7 +58,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://b3d56605ec7540fdb05795d2666fde28:608a6c71d16d42468f0fc1810d948c46@sentry.io/38482"
DSN = "https://a1b538da69e64bd5a0298900e48503f9:8253de45a02140b99a7c2a8fbc15f3d7@sentry.io/38482"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):

@ -23,8 +23,8 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "2.2.0dev15"
__version_info__ = (2, 2, 0, 99)
__version__ = "2.2.0rc1"
__version_info__ = (2, 2, 0, -99)
# If it's a git checkout try to add the commit
if "dev" in __version__:

Loading…
Cancel
Save