This commit is contained in:
Julien Duponchelle
2017-05-02 10:14:01 +02:00
parent a2059d3e7c
commit debe88bd37
3 changed files with 8 additions and 3 deletions

View File

@@ -1,5 +1,10 @@
# Change Log
## 2.0.0 02/05/2017
* Clarify that we don't override vmware custom adapters
* Strip space from path at project creation
## 2.0.0rc4 20/04/2017
* Catch all error during the generation of log messages.

View File

@@ -51,7 +51,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "sync+https://3714bcc58dc84a0fa6ee22a40b397efb:9ea472a0119b4b709f9a7027cfbac547@sentry.io/38506"
DSN = "sync+https://53d2bc7500394badbaaf8c64f30276d5:6e38be5966be4b55aa46d80b0d6ede79@sentry.io/38506"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):

View File

@@ -17,7 +17,7 @@
# __version__ is a human-readable version number.
__version__ = "2.0.0dev13"
__version__ = "2.0.0"
# If it's a git checkout try to add the commit
if "dev" in __version__:
@@ -37,4 +37,4 @@ or negative for a release candidate or beta (after the base version
number has been incremented)
"""
__version_info__ = (2, 0, 0, -99)
__version_info__ = (2, 0, 0, 0)