Release v2.2.24

pull/1880/head^2 v2.2.24
grossmj 3 years ago
parent 78c2ded2aa
commit 59a89c5f88

@ -1,5 +1,16 @@
# Change Log
## 2.2.24 25/08/2021
* Release web UI 2.2.24
* Fix issue when searching for image with relative path. Fixes #1925
* Fix wrong error when NAT interface is not allowed. Fixes #1943
* Fix incorrect Qemu binary selected when importing template. Fixes https://github.com/GNS3/gns3-gui/issues/3216
* Fix error when updating a link style. Fixes https://github.com/GNS3/gns3-gui/issues/2461
* Some fixes for early support for Python3.10 The loop parameter has been removed from most of asyncios high-level API following deprecation in Python 3.8.
* Early support for Python3.10 Fixes #1940
* Bump pywin32 from 300 to 301
## 2.2.23 05/08/2021
* Release web UI 2.2.23

@ -58,7 +58,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://aefc1e0e41e94957936f8773071aebf9:056b5247d4854b81ac9162d9ccc5a503@o19455.ingest.sentry.io/38482"
DSN = "https://95f189bae52543e38be226cc1de2c8f3:e06825958e234a3e9ae5a81eaa21993d@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.24dev1"
__version_info__ = (2, 2, 24, 99)
__version__ = "2.2.24"
__version_info__ = (2, 2, 24, 0)
if "dev" in __version__:
try:

Loading…
Cancel
Save