Skip to content

Commit

Permalink
Release v3.0.0a6
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Nov 15, 2023
1 parent d9c1d11 commit 8aaa58d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
@@ -1,5 +1,15 @@
# Change Log

## 3.0.0a6 15/11/2023

* Possible fix for stuck image upload. Ref https://github.com/GNS3/gns3-server/issues/2310
* Fix timeout issue when creating Qemu disk image. Fixes https://github.com/GNS3/gns3-server/issues/2313
* Add ISO file to images filter in Image Manager. Ref https://github.com/GNS3/gns3-server/issues/2310
* Update custom command help and protect against double quote in project name
* Refactor command variables support
* Pass os.environ in Popen()
* Add the ability to edit width and height in the style edit dialog.

## 2.2.44 06/11/2023

* Fix timeout issue when creating Qemu disk image. Fixes https://github.com/GNS3/gns3-server/issues/2313
Expand Down
2 changes: 1 addition & 1 deletion gns3/crash_report.py
Expand Up @@ -50,7 +50,7 @@ class CrashReport:
Report crash to a third party service
"""

DSN = "https://f1752c22a8fb159786c8dc37692733d6@o19455.ingest.sentry.io/38506"
DSN = "https://fefe86649c347b07c6084a74348a58cb@o19455.ingest.sentry.io/38506"
_instance = None

def __init__(self):
Expand Down
4 changes: 2 additions & 2 deletions gns3/version.py
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.0.dev10"
__version_info__ = (3, 0, 0, 99)
__version__ = "3.0.0a6"
__version_info__ = (3, 0, 0, -99)

if "dev" in __version__:
try:
Expand Down

0 comments on commit 8aaa58d

Please sign in to comment.