From 8448d41c9a2a42430d73a7da858ad3852068893d Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Tue, 5 Sep 2023 18:27:25 +0100 Subject: [PATCH] Version bump to 0.2 --- CHANGELOG.md | 10 ++++++++++ setup.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b380cc..d096768 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ Changelog ========= +0.2 (2023-09-05) +---------------- + +* Introduce virtual models as a closer drop-in replacement for model classes +* Support `detail_url` endpoints on `APIQuerySet` for retrieving individual records +* Implement `in_bulk` on `APIQuerySet` +* Allow customising HTTP headers on `APIQuerySet` +* Documentation + + 0.1 (2023-05-30) ---------------- diff --git a/setup.py b/setup.py index 960ff7b..067e897 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='queryish', - version='0.1', + version='0.2', description="A library for constructing queries on arbitrary data sources following Django's QuerySet API", author='Matthew Westcott', author_email='matthew.westcott@torchbox.com',