diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-04-20 11:41:22 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-04-20 11:41:22 +0200 |
commit | 032bb50d9da39e84ffb275c115cad0487881b5ec (patch) | |
tree | e691d30f62fa49cc397f1023279b4ce68f310185 | |
parent | 13cd5807f35d3856bff4109e3170a7de730932f5 (diff) | |
download | Ishtar-032bb50d9da39e84ffb275c115cad0487881b5ec.tar.bz2 Ishtar-032bb50d9da39e84ffb275c115cad0487881b5ec.zip |
Fix sentry integration
-rw-r--r-- | CHANGES.md | 6 | ||||
-rw-r--r-- | example_project/settings.py | 2 | ||||
-rw-r--r-- | ishtar_common/version.py | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/CHANGES.md b/CHANGES.md index 67d2a19b0..a8465995d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,12 @@ Ishtar changelog ================ +v3.1.13 - 2021-04-20 +-------------------- + +### Bug fixes ### +- Fix sentry integration of release parameter + v3.1.12 - 2021-04-20 -------------------- diff --git a/example_project/settings.py b/example_project/settings.py index b1dd1ffff..efad5af22 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -424,5 +424,5 @@ if SENTRY_ID and sentry_sdk: integrations=sentry_integrations, before_send=filter_irrelevant_errors, send_default_pii=True, - version=get_version() + "-" + EXTRA_VERSION + release=get_version() + "-" + EXTRA_VERSION ) diff --git a/ishtar_common/version.py b/ishtar_common/version.py index 3ae05dc45..e9e97234e 100644 --- a/ishtar_common/version.py +++ b/ishtar_common/version.py @@ -1,5 +1,5 @@ -# 3.1.12 -VERSION = (3, 1, 12) +# 3.1.13 +VERSION = (3, 1, 13) def get_version(): |