From ab56e9675bd37b34c5caed3ef94aa2376602c7b1 Mon Sep 17 00:00:00 2001 From: "pr-submit[bot]" Date: Mon, 21 Sep 2026 15:19:39 +0000 Subject: [PATCH] Release version 0.0.43 --- docs/release-notes.md | 2 ++ sqlmodel/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 83eff8ec82..6faa53702a 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest Changes +## 0.0.43 (2026-09-21) + ### Fixes * 🐛 Fix SQLAlchemy type handling in `Field`. PR [#2095](https://github.com/fastapi/sqlmodel/pull/2095) by [@tiangolo](https://github.com/tiangolo). diff --git a/sqlmodel/__init__.py b/sqlmodel/__init__.py index 4290e65719..ac23abb419 100644 --- a/sqlmodel/__init__.py +++ b/sqlmodel/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.42" +__version__ = "0.0.43" # Re-export from Pydantic from pydantic import Discriminator as Discriminator