Release v2.1.15

pull/1580/head v2.1.15
grossmj 5 years ago
parent e291ec1eb9
commit c70b344133

@ -1,5 +1,10 @@
# Change Log
## 2.1.15 21/03/2019
* Fix IOU symlink issue on remote servers.
* Fix vcpus configuration for GNS3 VM on VMware. Ref #2738.
## 2.1.14 27/02/2019
* Fix issue when setting cpuid.corespersocket for the GNS3 VM. Fixes https://github.com/GNS3/gns3-gui/issues/2723

@ -57,7 +57,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://3abf3feab0b14c51bfecaa170e846bb9:54b92432fbe94f0e9afe4cbf0dad0126@sentry.io/38482"
DSN = "https://a42f17beb052442095199b5cd8a0c910:b798e3e3699e437882de7285370ed063@sentry.io/38482"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):

@ -23,8 +23,8 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "2.1.15dev1"
__version_info__ = (2, 1, 15, 99)
__version__ = "2.1.15"
__version_info__ = (2, 1, 15, 0)
# If it's a git checkout try to add the commit
if "dev" in __version__:

Loading…
Cancel
Save