Skip to content

Commit db78989

Browse files
committed
fix changelog
1 parent 8ba6fbc commit db78989

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

doc/source/changelog.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22
Change Log
33
==========
44

5-
v2.1.1 (2025-03-07)
5+
v2.2.1 (2025-03-07)
6+
===================
7+
8+
* Changelog correction.
69

10+
11+
v2.2.0 (2025-03-07)
712
===================
13+
814
* Fixed `StrEnumProperties is missing from __all__ <https://github.com/bckohan/enum-properties/issues/83>`_
915
* Implemented `Test all example code in docs. <https://github.com/bckohan/enum-properties/issues/82>_`
1016
* Fixed `Symmetric dataclass is missing from __all__ <https://github.com/bckohan/enum-properties/issues/81>`_

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "enum-properties"
7-
version = "2.2.0"
7+
version = "2.2.1"
88
description = "Add properties and method specializations to Python enumeration values with a simple declarative syntax."
99
requires-python = ">=3.8,<4.0"
1010
authors = [

src/enum_properties/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from dataclasses import dataclass
2020
from functools import cached_property
2121

22-
VERSION = (2, 2, 0)
22+
VERSION = (2, 2, 1)
2323

2424
__title__ = "Enum Properties"
2525
__version__ = ".".join(str(i) for i in VERSION)

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)