Skip to content

Commit

Permalink
Release v2.2.35
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Nov 8, 2022
1 parent 338128c commit 1aca7db
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion gns3server/crash_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
4 changes: 2 additions & 2 deletions gns3server/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 1aca7db

Please sign in to comment.