From b3793603d969de4bf76397961da57910c1e7a6ca Mon Sep 17 00:00:00 2001 From: Alexander Date: Fri, 22 Nov 2024 19:19:30 +0100 Subject: [PATCH] Fix version numbering (#237) Changes: - Fix version numbering --- docs/release-notes.md | 10 ++++++---- edgy/__init__.py | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 1a29816a..14427098 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -6,18 +6,20 @@ hide: # Release Notes -## 0.23.2 + +## 0.23.3 ### Fixed -- Autodetection of the instance was broken when a directory containing dots is in the folder. -- Fix compatibility with pydantic 2.10. +- Version number mismatch. -## 0.23.1 +## 0.23.1 & 0.23.2 ### Fixed - Docs were broken. +- Autodetection of the instance was broken when a directory containing dots is in the folder. +- Fix compatibility with pydantic 2.10. ## 0.23.0 diff --git a/edgy/__init__.py b/edgy/__init__.py index 4cadddfb..91492dc9 100644 --- a/edgy/__init__.py +++ b/edgy/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "0.23.1" +__version__ = "0.23.3" from typing import TYPE_CHECKING from ._monkay import Instance, create_monkay