From 4117fe9bc0a89970a432a713f32617c716a42a19 Mon Sep 17 00:00:00 2001 From: Sven Klemm Date: Fri, 2 Aug 2024 17:03:25 +0200 Subject: [PATCH] Release 0.8.0 This version of pgspot adds the following new features: - Add flag to ignore specific procedural languages (#185) - Support @extschema:name@ placeholders introduced with PG16 - Warn about C security definer functions without search_path --- CHANGELOG.md | 6 ++++++ src/pgspot/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a4354a..a4212d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ +## 0.8.0 (2024-08-02) + +- Add flag to ignore specific procedural languages (#185) +- Support @extschema:name@ placeholders introduced with PG16 +- Warn about C security definer functions without search_path + ## 0.7.1 (2024-04-12) - Fix handling of FOREACH IN ARRAY diff --git a/src/pgspot/__init__.py b/src/pgspot/__init__.py index a5f830a..777f190 100644 --- a/src/pgspot/__init__.py +++ b/src/pgspot/__init__.py @@ -1 +1 @@ -__version__ = "0.7.1" +__version__ = "0.8.0"