From d196b33c2cf8fe2b32a89f67c8c2a7426f130287 Mon Sep 17 00:00:00 2001 From: henadzit Date: Thu, 21 Nov 2024 18:12:15 +0100 Subject: [PATCH] Release 0.3.0 --- CHANGELOG.md | 9 +++++++++ pyproject.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc2953e..f4e1752 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # ChangeLog +## 0.3 + +## 0.3.0 +- Add `Parameterizer` +- Uppdate `Parameter` to be dialect-aware +- Remove `ListParameter`, `DictParameter`, `QmarkParameter`, etc. +- Wrap query's offset and limit with ValueWrapper so they can be parametrized +- Fix a missing whitespace for MSSQL when pagination without ordering is used + ## 0.2 ### 0.2.2 diff --git a/pyproject.toml b/pyproject.toml index 5f1bbfa..8887e9a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pypika-tortoise" -version = "0.2.2" +version = "0.3.0" description = "Forked from pypika and streamline just for tortoise-orm" authors = ["long2ice "] license = "Apache-2.0"