pull/1027/head v2.0.0
Julien Duponchelle 7 years ago
parent 1b0f5c63b8
commit c88886911e
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -1,5 +1,13 @@
# 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
* Fix a race condition when handling error at project opening

@ -54,7 +54,7 @@ class CrashReport:
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"):
cacert = get_resource("cacert.pem")
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
# number has been incremented)
__version__ = "2.0.0dev13"
__version__ = "2.0.0"
# If it's a git checkout try to add the commit
if "dev" in __version__:
@ -36,4 +36,4 @@ if "dev" in __version__:
except Exception as e:
print(e)
__version_info__ = (2, 0, 0, -99)
__version_info__ = (2, 0, 0, 0)

Loading…
Cancel
Save