Release v2.1.14

pull/1540/head v2.1.14
grossmj 5 years ago
parent 7aae682f0a
commit 32f5dbb645

@ -1,5 +1,10 @@
# Change Log
## 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
* Bump ACPI Shutdown Timeout to 120 seconds. Ref #1536
## 2.1.13 26/02/2019
* Force jsonschema dependency to 2.6.0

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

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

Loading…
Cancel
Save