Skip to content

Commit

Permalink
Release v2.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Jan 8, 2020
1 parent e127dc3 commit fe8fd82
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## 2.2.4 08/01/2020

* Accept a node name when creating a node from a template using the API. Fixes #1708
* Disallow to modify a template if changes cannot be written on disk. Fixes #1695
* Fix renaming IOL hostname replaces %h only in a single place. Fixes #1707
* Add symbols_path
* Bundle Web Ui version 2019.2.0-alpha.11
* Change the default UDP port range to be 20000 to 30000 in gns3_server.conf Ref #1271
* Fix cannot power on VirtualBox VM in saved state. Ref #1702

## 2.2.3 12/11/2019

* Improved how the path to the config file is actually determined
Expand Down
2 changes: 1 addition & 1 deletion gns3server/crash_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class CrashReport:
Report crash to a third party service
"""

DSN = "https://dfe18e681fad4de580403c7432ae50d1:d9a1927b28c64836a41e4390c3242372@sentry.io/38482"
DSN = "https://daf38ec184724ec5bee0c8374a2b986e:d0a1e12bed364f3089c681c41828ee52@sentry.io/38482"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):
Expand Down
4 changes: 2 additions & 2 deletions gns3server/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__ = "2.2.4dev1"
__version_info__ = (2, 2, 4, 99)
__version__ = "2.2.4"
__version_info__ = (2, 2, 4, 0)

if "dev" in __version__:
try:
Expand Down

0 comments on commit fe8fd82

Please sign in to comment.