diff --git a/CHANGELOG b/CHANGELOG index 8ea402eb..563812f0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,16 @@ # Change Log +## 2.0.3 13/06/2017 + +* Fixes #1068 - handle zipfile encoding issues at project duplication +* Fix: #1066 - Catching parsing errors at linked vbox file +* Ignoring virtualenv directory at gitignore +* Escaping VPCS name in regex #1067 +* Fix racecondition when listing interface +* Fix Qemu disk creation with unicode characters not supported by local filesystem #1058 (#1063) +* Fix when config file doesn't have computes section (#1062) +* Check aiohttp version + ## 2.0.2 30/05/2017 * Set correct permission on ubridge when doing a remote installation diff --git a/gns3server/crash_report.py b/gns3server/crash_report.py index 77ae01f4..a2e44ec6 100644 --- a/gns3server/crash_report.py +++ b/gns3server/crash_report.py @@ -54,7 +54,7 @@ class CrashReport: Report crash to a third party service """ - DSN = "sync+https://67b93949a78d4ef5978388cc4b8906f9:271ee1dd01db4a39b919097f452cb6c5@sentry.io/38482" + DSN = "sync+https://9b15627f2ddf4e21a9880536354bfcb5:b31dee5d3abf4c74844895432193d0ac@sentry.io/38482" if hasattr(sys, "frozen"): cacert = get_resource("cacert.pem") if cacert is not None and os.path.isfile(cacert): diff --git a/gns3server/version.py b/gns3server/version.py index a5999586..fd5abfb4 100644 --- a/gns3server/version.py +++ b/gns3server/version.py @@ -23,7 +23,7 @@ # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "2.0.3dev1" +__version__ = "2.0.3" # If it's a git checkout try to add the commit if "dev" in __version__: @@ -36,4 +36,4 @@ if "dev" in __version__: except Exception as e: print(e) -__version_info__ = (2, 0, 3, -99) +__version_info__ = (2, 0, 3, 0)