Release 2.1.0 beta 1

pull/1157/head v2.1.0b1
ziajka 7 years ago
parent 44fc87a24c
commit e2de872036

@ -1,5 +1,15 @@
# Change Log
## 2.1.0b1 04/08/2017
* Sync appliances
* Interface starting with gns3 are not display by default in the cloud
* Catch error when something that is not the GNS3 server answer to virtualbox requests
* Catch KeyError: <aiohttp.connector._TransportPlaceholder
* Add a warning when you try to load and the server is not started with --local
* Sync appliances
* Fix permission on exited container
## 2.1.0a2 31/07/2017
* Handle invalid appliances files

@ -57,7 +57,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "sync+https://a387df116ea64abb9561c6b1df84afd3:2c420d1690e242ada5307fc9e5f01d06@sentry.io/38482"
DSN = "sync+https://3bc420f078ca4829ac3684d24a959705:32657f8bcf3444e1b3aa0845f9f73959@sentry.io/38482"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):

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

Loading…
Cancel
Save