Skip to content

Commit 3d702aa

Browse files
committed
Release v2.2.30
1 parent f5e63c2 commit 3d702aa

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG

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

3+
## 2.2.30 25/02/2022
4+
5+
* Set setuptools to v60.6.0
6+
* Upgrade to pywin32 v303. Ref #3290
7+
* Fix int() call. Ref #3283
8+
* Fix QPoint() as unexpected type 'float'. Fixes #3283
9+
* Fix painter.drawRect() has unexpected type 'float'. Fixes #3282
10+
* Fix SpinBox.setValue() requires integer. Fixes #3281
11+
312
## 2.2.29 08/01/2022
413

514
* Clear cache when opening symbol selection dialog. Fixes #3256

gns3/crash_report.py

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

54-
DSN = "https://e4f24eeace594021a586b0b40d2b756c:d2ea5c062d274e6bbfd64367363a69c7@o19455.ingest.sentry.io/38506"
54+
DSN = "https://af4a41ed50244ecdbbb3859a45a24156:cd25030a0d7049c58a76b39c2fd5cb05@o19455.ingest.sentry.io/38506"
5555
_instance = None
5656

5757
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.30dev1"
27-
__version_info__ = (2, 2, 30, 99)
28-
26+
__version__ = "2.2.30"
27+
__version_info__ = (2, 2, 30, 0)
2928
if "dev" in __version__:
3029
try:
3130
import os

0 commit comments

Comments
 (0)