Release v2.2.17

pull/1852/head v2.2.17
grossmj 3 years ago
parent 18c878429f
commit 24fe67f82b

@ -1,5 +1,12 @@
# Change Log
## 2.2.17 04/12/2020
* Close and remove projects deleted from disks after SIGHUP signal is received.
* Release Web Ui 2.2.17
* New config file options to configure the VNC console port range.
* Use asyncio.all_tasks instead of deprecated method for Python 3.9 compatibility.
## 2.2.16 05/11/2020
* Option to allocate or not the vCPUs and RAM settings for the GNS3 VM. Fixes https://github.com/GNS3/gns3-gui/issues/3069

@ -58,7 +58,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://026410fd151843438d078e604f2e4455:1792bf69988342c7b44f8a69ae0cad6f@o19455.ingest.sentry.io/38482"
DSN = "https://8c30fa3843ab4cdc977e4710cefac0b1:212efa491b1b459f87a0242cb2598e0c@o19455.ingest.sentry.io/38482"
_instance = None
def __init__(self):

@ -23,8 +23,8 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "2.2.17dev1"
__version_info__ = (2, 2, 17, 99)
__version__ = "2.2.17"
__version_info__ = (2, 2, 17, 0)
if "dev" in __version__:
try:

Loading…
Cancel
Save