Release v2.2.0rc4

pull/1681/head v2.2.0rc4
grossmj 5 years ago
parent 941857470d
commit 4470519d9f

@ -1,5 +1,13 @@
# Change Log
## 2.2.0rc4 30/08/2019
* Release 2019.2.0-alpha.7
* Check that vcpus value for GNS3 VM is an integer. Fixes #1636
* Make x,y optional for creating links via API. Fixes #1630
* Set default_name_format for some builtin nodes.
* Allow "none" for compute_id in templates.
## 2.2.0rc3 12/08/2019
* Revert to jsonschema 2.6.0 due to packaging problem.

@ -58,7 +58,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://f6c36a57e67240618f53e08a5ee6988e:45f2a0ab125748409c3e95b4f86f4b76@sentry.io/38482"
DSN = "https://6fcf35d3e34e401b9d82421615bcaec7:332bea501d9c43bcb2d716fc83cecaea@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.0dev17"
__version_info__ = (2, 2, 0, 99)
__version__ = "2.2.0rc4"
__version_info__ = (2, 2, 0, -99)
if "dev" in __version__:
try:

Loading…
Cancel
Save