Skip to content

Commit

Permalink
Release v2.2.41
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Jul 12, 2023
1 parent b162c55 commit cf2802b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 2.2.41 12/07/2023

* Use alternative method to set the correct permissions for uBridge on macOS
* Remove sending stats to GA
* Catch urllib3 exceptions when sending crash report. Ref https://github.com/GNS3/gns3-gui/issues/3483
* Backport UEFI boot mode support for Qemu VMs
* Add debug for dropEvent. Ref https://github.com/GNS3/gns3-server/issues/2242

## 2.2.40.1 10/06/2023

* No changes
Expand Down
2 changes: 1 addition & 1 deletion gns3/crash_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class CrashReport:
Report crash to a third party service
"""

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

def __init__(self):
Expand Down
4 changes: 2 additions & 2 deletions gns3/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.41.dev3"
__version_info__ = (2, 2, 41, 99)
__version__ = "2.2.41"
__version_info__ = (2, 2, 41, 0)

if "dev" in __version__:
try:
Expand Down

0 comments on commit cf2802b

Please sign in to comment.