diff --git a/CHANGELOG.md b/CHANGELOG.md index 3287504a70..6e7ea0d7f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog -## main branch +## Evennia 3.2.0 + +Feb 25, 2024 - Feature: Add [`evennia.ON_DEMAND_HANDLER`][new-ondemandhandler] for making it easier to implement changes that are calculated on-demand (Griatch) diff --git a/docs/source/Coding/Changelog.md b/docs/source/Coding/Changelog.md index 3287504a70..6e7ea0d7f2 100644 --- a/docs/source/Coding/Changelog.md +++ b/docs/source/Coding/Changelog.md @@ -1,6 +1,8 @@ # Changelog -## main branch +## Evennia 3.2.0 + +Feb 25, 2024 - Feature: Add [`evennia.ON_DEMAND_HANDLER`][new-ondemandhandler] for making it easier to implement changes that are calculated on-demand (Griatch) diff --git a/evennia/VERSION.txt b/evennia/VERSION.txt index 94ff29cc4d..944880fa15 100644 --- a/evennia/VERSION.txt +++ b/evennia/VERSION.txt @@ -1 +1 @@ -3.1.1 +3.2.0 diff --git a/pyproject.toml b/pyproject.toml index fbf5d13278..4fa79cc237 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "evennia" -version = "3.1.1" +version = "3.2.0" maintainers = [{ name = "Griatch", email = "griatch@gmail.com" }] description = "A full-featured toolkit and server for text-based multiplayer games (MUDs, MU*, etc)." requires-python = ">=3.10"