Release v2.1.2

pull/1302/head v2.1.2
ziajka 6 years ago
parent 47ef7e2a5e
commit 6af64454d0

@ -1,5 +1,12 @@
# Change Log
## 2.1.2 08/01/2018
* Do not show log message if configuration file doesn't exist. Fixes #1206.
* Update API documentation
* Update API documentation. Fixes #1253.
* GNS3-API: implement GET for specific drawing and link Fixes #1249
## 2.1.1 22/12/2017
* Protect variable replacement for Qemu options. Escape double quotes.

@ -57,7 +57,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "sync+https://ad494b2c01ee40a5b0250d950c815bd2:547cc717c79e4893b5950f6bd835af98@sentry.io/38482"
DSN = "sync+https://abb552c4f16c45c2ab75c84641100d6e:279c28ac32794198be94f0d17ad50a54@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,8 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "2.1.2dev1"
__version_info__ = (2, 1, 1, 0)
__version__ = "2.1.2"
__version_info__ = (2, 1, 2, 0)
# If it's a git checkout try to add the commit
if "dev" in __version__:

Loading…
Cancel
Save