Release v2.1.19

pull/1597/head v2.1.19
grossmj 5 years ago
parent 4f803ff162
commit 6fb613dcff

@ -1,5 +1,11 @@
# Change Log
## 2.1.19 28/05/2019
* Sync appliances.
* Remove yarl from requirements.txt since it is installed by aiohttp.
* Drop typing dependency.
## 2.1.18 22/05/2019
* Revert "Force aiohttp version to 2.3.10 and aiohttp-cors version to 0.5.3" Ref https://github.com/GNS3/gns3-server/issues/1583 Ref https://github.com/GNS3/gns3-server/issues/1592

@ -57,7 +57,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://2b1412df322748bc8b36639671f1a40e:25804fdd614d498aa429c689f540779e@sentry.io/38482"
DSN = "https://1a438abf17244ba98bb5e5869b9185c7:40dd0ad5e49b4e5e80a4cb057498f4d3@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.19dev1"
__version_info__ = (2, 1, 19, 99)
__version__ = "2.1.19"
__version_info__ = (2, 1, 19, 0)
# If it's a git checkout try to add the commit
if "dev" in __version__:

Loading…
Cancel
Save