Release v2.1.8

This commit is contained in:
ziajka
2018-06-14 15:16:54 +02:00
parent 20d4f73f56
commit 47d335f4c9
3 changed files with 9 additions and 3 deletions

View File

@@ -1,5 +1,11 @@
# Change Log
## 2.1.8 14/06/2018
* Add error information when cannot access/read IOS/IOU config file. Ref #2501
* Fallback when using process name to bring console to front.
* Use process name to bring console to front. Fixes #2514.
## 2.1.7 12/06/2018
* Do not try to update link if it is being deleted. Fixes #2483.

View File

@@ -51,7 +51,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "sync+https://806956d411fc4cdf8cda8f27b08079a8:a1d1a6aaa57f4c46a7db02d89f5fab95@sentry.io/38506"
DSN = "sync+https://08a47076d6cf4eebb455e8e79ef1e78d:ee721159025d4e2ea044e119a8789ece@sentry.io/38506"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):

View File

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