pull/1138/head v2.1.0a1
Julien Duponchelle 7 years ago
parent 34c27bc18a
commit faed85e48b
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -1,5 +1,13 @@
# Change Log
## 2.1.0a1 24/07/2017
* Packet filtering
* Suspend a link
* Duplicate a node
* Move config to central server
* Appliance templates on server
## 2.0.3 13/06/2017
* Fixes #1068 - handle zipfile encoding issues at project duplication

@ -57,7 +57,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "sync+https://9b15627f2ddf4e21a9880536354bfcb5:b31dee5d3abf4c74844895432193d0ac@sentry.io/38482"
DSN = "sync+https://0be5eacd0d1844a7a8de6dc4426e7e51:a2bb2c708e68467ba57277436d7bfbfa@sentry.io/38482"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):

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

Loading…
Cancel
Save