Skip to content

Commit

Permalink
Release v2.2.43
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Sep 19, 2023
1 parent c06e534 commit 97b777c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## 2.2.43 19/09/2023

* Add KiTTY to preconfigured telnet consoles. Fixes #3507
* Fix generic icon in Wayland. Ref #3501
* Support for appliance format version 8.
* Use importlib instead of pkg_resources
* Upgrade to PyQt 5.15.9 and pywin32
* Add support for appliance version 8 format

## 2.2.42 09/08/2023

* Use the system's certificate store for SSL connections
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://bae0411a1718612ee8c25cdb12ec7f02@o19455.ingest.sentry.io/38506"
DSN = "https://57454675a266a9d705fd505947a81b5c@o19455.ingest.sentry.io/38506"
_instance = None

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

__version__ = "2.2.43.dev1"
__version__ = "2.2.43"

__version_info__ = (2, 2, 43, 0)

__version_info__ = (2, 2, 43, 99)
if "dev" in __version__:
try:
import os
Expand Down

0 comments on commit 97b777c

Please sign in to comment.