Release v2.2.0rc3

pull/1643/head v2.2.0rc3
grossmj 5 years ago
parent 2feec666a2
commit 4656521987

@ -1,5 +1,9 @@
# Change Log
## 2.2.0rc3 12/08/2019
* Revert to jsonschema 2.6.0 due to packaging problem.
## 2.2.0rc2 10/08/2019
* Bump jsonschema to version 3.0.2

@ -58,7 +58,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://0515b114884245ee8324d01d9ccc5e8e:505f352146314efd8f0e8af473a6ab3f@sentry.io/38482"
DSN = "https://f6c36a57e67240618f53e08a5ee6988e:45f2a0ab125748409c3e95b4f86f4b76@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,9 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "2.2.0rc2"
__version_info__ = (2, 2, 0, -99)
# If it's a git checkout try to add the commit
__version__ = "2.2.0rc3"
__version_info__ = (2, 2, 0, -99) # If it's a git checkout try to add the commit
if "dev" in __version__:
try:
import os

Loading…
Cancel
Save