Skip to content

Commit

Permalink
Release v2.2.30
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Feb 25, 2022
1 parent f5e63c2 commit 3d702aa
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
@@ -1,5 +1,14 @@
# Change Log

## 2.2.30 25/02/2022

* Set setuptools to v60.6.0
* Upgrade to pywin32 v303. Ref #3290
* Fix int() call. Ref #3283
* Fix QPoint() as unexpected type 'float'. Fixes #3283
* Fix painter.drawRect() has unexpected type 'float'. Fixes #3282
* Fix SpinBox.setValue() requires integer. Fixes #3281

## 2.2.29 08/01/2022

* Clear cache when opening symbol selection dialog. Fixes #3256
Expand Down
2 changes: 1 addition & 1 deletion gns3/crash_report.py
Expand Up @@ -51,7 +51,7 @@ class CrashReport:
Report crash to a third party service
"""

DSN = "https://e4f24eeace594021a586b0b40d2b756c:d2ea5c062d274e6bbfd64367363a69c7@o19455.ingest.sentry.io/38506"
DSN = "https://af4a41ed50244ecdbbb3859a45a24156:cd25030a0d7049c58a76b39c2fd5cb05@o19455.ingest.sentry.io/38506"
_instance = None

def __init__(self):
Expand Down
5 changes: 2 additions & 3 deletions gns3/version.py
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.30dev1"
__version_info__ = (2, 2, 30, 99)

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

0 comments on commit 3d702aa

Please sign in to comment.