Release v2.2.0

pull/1681/head v2.2.0
grossmj 5 years ago
parent fef1d01e26
commit 7c437adbef

@ -1,5 +1,14 @@
# Change Log
## 2.2.0 30/09/2019
* Add debug message for what directory is checked for Qemu binaries. Ref #1655
* Release 2019.2.0-alpha.8
* Fix single quote is not closed. Fixes #1654
* Fix wrong Dynamips command used to rename an ATM switch. Fixes #1651
* Don't specify the PCI bus for AHCI device
* Add id value to all Qemu drives
## 2.2.0rc5 09/09/2019
* Fix AttributeError: Cannot set attribute '%s'. Fixes #1646

@ -58,7 +58,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://9dd18d73e6164385b14cdd1a05ca283f:2f169899e390407cb8150f7b8d54c8c6@sentry.io/38482"
DSN = "https://7f7ec6fa8e1344ff9cfe0757efb00eb2:1e0a0b09cdcf4d169b937b7a40dc620c@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.0dev18"
__version_info__ = (2, 2, 0, 99)
__version__ = "2.2.0"
__version_info__ = (2, 2, 0, 0)
if "dev" in __version__:
try:

Loading…
Cancel
Save