This commit is contained in:
Julien Duponchelle 2017-05-30 08:56:50 +02:00
parent c46a9da769
commit 78e1321bae
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8
3 changed files with 16 additions and 3 deletions

View File

@ -1,5 +1,18 @@
# Change Log # Change Log
## 2.0.2 30/05/2017
* Set correct permission on ubridge when doing a remote installation
* Remote install script should be totally non interactive
* Duplicate project on remote server use UUID
* Fix import of some old topologies from 1.3
* Fix error in logging of error during starting GNS3 VM
* Fix an error when logging Docker container fail to start
* Use docker version in error message of outdated docker installation
* Support images created by "docker commit". Fixes #1039
* Do not wait auto start to finish in order to complete project opening
* Improve logging for remote server connection lost
## 2.0.1 16/05/2017 ## 2.0.1 16/05/2017
* Handle HTTP 504 errors from compute node * Handle HTTP 504 errors from compute node

View File

@ -54,7 +54,7 @@ class CrashReport:
Report crash to a third party service Report crash to a third party service
""" """
DSN = "sync+https://9b1156a90ee943eba20e032cf007297d:024b75c7b11844a58df147a4fb059774@sentry.io/38482" DSN = "sync+https://67b93949a78d4ef5978388cc4b8906f9:271ee1dd01db4a39b919097f452cb6c5@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):

View File

@ -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.2dev1" __version__ = "2.0.2"
# 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, 2, -99) __version_info__ = (2, 0, 2, 0)