Skip to content

Commit

Permalink
Release v3.0.0a2
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Sep 6, 2022
1 parent f0d12c9 commit 7b52cd4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## 3.0.0a2 06/09/2022

* Add missing 'sys' module. Ref #3373
* Upgrade dev dependencies
* Dot not allow "no border" style for line items
* Use "none" for solid line style in drawing items
* Implement new option (Delete All) to contextual menu in "Console" dock. Fixes #3325
* Fix editing Docker container config generates exception and empty config. Fixes #3371
* Fix 2560x1440 resolution for Docker container
* Fix cannot detect images by default when trying to upload them in the Image Manager. Fixes #3367
* Fix unable to set VNC console resolution. Fixes #3365

## 3.0.0a1 04/08/2022

* Set default symbol theme to "Affinity-square-blue"
Expand Down
2 changes: 1 addition & 1 deletion gns3/crash_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class CrashReport:
Report crash to a third party service
"""

DSN = "https://c2d4584e0a7b41bb8139956a84967e35@o19455.ingest.sentry.io/38506"
DSN = "https://d551ae4af1324d79bdbb21c7362a4833@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__ = "3.0.0dev4"
__version_info__ = (3, 0, 0, 99)
__version__ = "3.0.0a2"
__version_info__ = (3, 0, 0, -99)

if "dev" in __version__:
try:
Expand Down

0 comments on commit 7b52cd4

Please sign in to comment.