From 8aa7024d16f2ea10850d43496d1829f94ef7c807 Mon Sep 17 00:00:00 2001 From: Piotr Wargulak Date: Thu, 17 Nov 2022 14:52:48 +0100 Subject: [PATCH] Version 0.5.0 release --- CHANGES.md | 2 ++ superset_patchup/version.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index e4e4d90..0a8f35a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,5 @@ +v0.5.0 +- OpenLMIS Version release, support for Superset 1.5.2, security fix v0.4.0 Thu Aug 4 02:09:35 PM EAT 2022 - https://github.com/onaio/superset-patchup/pull/63 Allow onadata provider name to be configurable. diff --git a/superset_patchup/version.py b/superset_patchup/version.py index 8f727fa..66f08b9 100644 --- a/superset_patchup/version.py +++ b/superset_patchup/version.py @@ -1,3 +1,3 @@ """Version goes here - to avoid cyclic dependencies :-(""" -VERSION = (0, 4, 0) +VERSION = (0, 5, 0) __version__ = ".".join(str(v) for v in VERSION)