Skip to content

Commit e224a9a

Browse files
committed
Release v2.2.55
1 parent 5b87f36 commit e224a9a

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 2.2.55 19/11/2025
4+
5+
* Fix SyntaxWarning: invalid escape sequence. Fixes #3760
6+
* Support for Python 3.14
7+
* Clicking the "console connect to all nodes" opens all consoles in name order with case-insensitively
8+
39
## 2.2.54 21/04/2025
410

511
* Replace "Docker hub" by "Docker repository" because it is possible to use different repositories

gns3/crash_report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class CrashReport:
5050
Report crash to a third party service
5151
"""
5252

53-
DSN = "https://62d45083e8fee6a3f5c28d4710ef2cb6@o19455.ingest.us.sentry.io/38506"
53+
DSN = "https://4787643437b9cd21a738c97fe5595c2b@o19455.ingest.us.sentry.io/38506"
5454
_instance = None
5555

5656
def __init__(self):

gns3/version.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@
2323
# or negative for a release candidate or beta (after the base version
2424
# number has been incremented)
2525

26-
__version__ = "2.2.55.dev1"
27-
__version_info__ = (2, 2, 54, 99)
28-
26+
__version__ = "2.2.55"
27+
__version_info__ = (2, 2, 55, 0)
2928
if "dev" in __version__:
3029
try:
3130
import os

0 commit comments

Comments
 (0)