Release v2.2.35

pull/2145/head v2.2.35
grossmj 2 years ago
parent 338128ca3e
commit 1aca7dbe04

@ -1,5 +1,20 @@
# Change Log
## 2.2.35 08/11/2022
* Release web-ui v2.2.35
* Fix issues with VMnet interface on macOS >= 11.0. Ref #3381
* Use importlib_resources instead of pkg_resources and install built-in appliances in config dir.
* Fix console vnc don't use configured ports in some case. Fixes #2111
* Add missing VMware settings in gns3_server.conf
* Make version PEP 440 compliant
* Support for Python 3.11
* Allow for more dependency versions at patch level
* Replace deprecated distro.linux_distribution() call
* Update gns3.service.systemd
* gns3.service.openrc: make openrc script posix compliant
* fix: use exact match to find interface in windows to avoid get wrong interface
## 2.2.34 28/08/2022
* Use original $PATH in init.sh for Docker containers. Ref #2069

@ -58,7 +58,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://3f074423e7664595923ae5895b0819c4@o19455.ingest.sentry.io/38482"
DSN = "https://67695b9b3995495d9445159d973d2f0d@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.35.dev2"
__version_info__ = (2, 2, 35, 99)
__version__ = "2.2.35"
__version_info__ = (2, 2, 35, 0)
if "dev" in __version__:
try:

Loading…
Cancel
Save