mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-06-01 15:20:59 +00:00
2.0.3 release
This commit is contained in:
parent
64a852f38f
commit
41af46cdc5
11
CHANGELOG
11
CHANGELOG
@ -1,5 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.0.3 13/06/2017
|
||||||
|
|
||||||
|
* Fixes #1068 - handle zipfile encoding issues at project duplication
|
||||||
|
* Fix: #1066 - Catching parsing errors at linked vbox file
|
||||||
|
* Ignoring virtualenv directory at gitignore
|
||||||
|
* Escaping VPCS name in regex #1067
|
||||||
|
* Fix racecondition when listing interface
|
||||||
|
* Fix Qemu disk creation with unicode characters not supported by local filesystem #1058 (#1063)
|
||||||
|
* Fix when config file doesn't have computes section (#1062)
|
||||||
|
* Check aiohttp version
|
||||||
|
|
||||||
## 2.0.2 30/05/2017
|
## 2.0.2 30/05/2017
|
||||||
|
|
||||||
* Set correct permission on ubridge when doing a remote installation
|
* Set correct permission on ubridge when doing a remote installation
|
||||||
|
@ -54,7 +54,7 @@ class CrashReport:
|
|||||||
Report crash to a third party service
|
Report crash to a third party service
|
||||||
"""
|
"""
|
||||||
|
|
||||||
DSN = "sync+https://67b93949a78d4ef5978388cc4b8906f9:271ee1dd01db4a39b919097f452cb6c5@sentry.io/38482"
|
DSN = "sync+https://9b15627f2ddf4e21a9880536354bfcb5:b31dee5d3abf4c74844895432193d0ac@sentry.io/38482"
|
||||||
if hasattr(sys, "frozen"):
|
if hasattr(sys, "frozen"):
|
||||||
cacert = get_resource("cacert.pem")
|
cacert = get_resource("cacert.pem")
|
||||||
if cacert is not None and os.path.isfile(cacert):
|
if cacert is not None and os.path.isfile(cacert):
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
# or negative for a release candidate or beta (after the base version
|
# or negative for a release candidate or beta (after the base version
|
||||||
# number has been incremented)
|
# number has been incremented)
|
||||||
|
|
||||||
__version__ = "2.0.3dev1"
|
__version__ = "2.0.3"
|
||||||
|
|
||||||
# If it's a git checkout try to add the commit
|
# If it's a git checkout try to add the commit
|
||||||
if "dev" in __version__:
|
if "dev" in __version__:
|
||||||
@ -36,4 +36,4 @@ if "dev" in __version__:
|
|||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(e)
|
print(e)
|
||||||
|
|
||||||
__version_info__ = (2, 0, 3, -99)
|
__version_info__ = (2, 0, 3, 0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user