Skip to content

Commit

Permalink
Release v2.2.42
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Aug 9, 2023
1 parent 72960f8 commit 3527e55
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## 2.2.42 09/08/2023

* Use the system's certificate store for SSL connections
* Give a node some time to start before opening the console (for console auto start). Fixes #3474
* Use Mate Terminal by default if installed on Debian, Ubuntu and Linux Mint.
* Support for gnome-terminal tabs to be opened in the same window.
* Remove import urllib3 and let sentry_sdk import and patch it. Fixes https://github.com/GNS3/gns3-gui/issues/3498
* Add import sys in sudo.py
* Rounded Rectangle support

## 2.2.41 12/07/2023

* Use alternative method to set the correct permissions for uBridge on macOS
Expand Down
2 changes: 1 addition & 1 deletion gns3/crash_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class CrashReport:
Report crash to a third party service
"""

DSN = "https://8e73913aea164a31a72e3a07fc455e26@o19455.ingest.sentry.io/38506"
DSN = "https://bae0411a1718612ee8c25cdb12ec7f02@o19455.ingest.sentry.io/38506"
_instance = None

def __init__(self):
Expand Down
5 changes: 2 additions & 3 deletions gns3/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)

__version__ = "2.2.42.dev4"
__version_info__ = (2, 2, 42, 99)

__version__ = "2.2.42"
__version_info__ = (2, 2, 42, 0)
if "dev" in __version__:
try:
import os
Expand Down

0 comments on commit 3527e55

Please sign in to comment.