mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 16:54:51 +02:00
2.0.0
This commit is contained in:
parent
1b0f5c63b8
commit
c88886911e
@ -1,5 +1,13 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.0.0 02/05/2017
|
||||||
|
|
||||||
|
* Fix connection to websocket with last docker release
|
||||||
|
* Lower docker requirements in tests also
|
||||||
|
* Docker minimum api is 1.25
|
||||||
|
* Handling server disconnect error when docker daemon die
|
||||||
|
* Handle some invalid SVG images
|
||||||
|
|
||||||
## 2.0.0rc4 20/04/2017
|
## 2.0.0rc4 20/04/2017
|
||||||
|
|
||||||
* Fix a race condition when handling error at project opening
|
* Fix a race condition when handling error at project opening
|
||||||
|
@ -54,7 +54,7 @@ class CrashReport:
|
|||||||
Report crash to a third party service
|
Report crash to a third party service
|
||||||
"""
|
"""
|
||||||
|
|
||||||
DSN = "sync+https://19cca90b55874be5862caf9b507fbd7b:1c0897efd092467a874e89b2e4803b29@sentry.io/38482"
|
DSN = "sync+https://fd4397dee2e145da9227af29df24ded1:61a0e2c9b9f64204bb8ef7ac17b98e3e@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.0dev13"
|
__version__ = "2.0.0"
|
||||||
|
|
||||||
# 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, 0, -99)
|
__version_info__ = (2, 0, 0, 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user