From 5ef23b5b6839e3dcd96abd1f2f844527f6e211c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Kl=C3=B6pfel?= Date: Wed, 6 Mar 2024 15:01:00 +0100 Subject: [PATCH] Release 1.9.2: Bumped version and updated changelog --- CHANGELOG.rst | 3 +++ queryable_properties/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9d31afb..d6cce18 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,9 @@ Changelog master (unreleased) ------------------- +1.9.2 (2024-03-06) +------------------ + - Fixed an error that prevented querysets with queryable property features from being used as filter values in ``__in`` filters (i.e. implicit subqueries) diff --git a/queryable_properties/__init__.py b/queryable_properties/__init__.py index f624c0d..6ded71a 100644 --- a/queryable_properties/__init__.py +++ b/queryable_properties/__init__.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals -__version__ = '1.9.1' +__version__ = '1.9.2' __author__ = 'Marcus Klöpfel' __copyright__ = 'Copyright 2024, Marcus Klöpfel' __license__ = 'BSD'