From f823e367f0d71a1d39e8f146919b5447bca61526 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sat, 6 Apr 2024 23:07:10 +0200 Subject: [PATCH] Evennia 4.1.1 patch release --- CHANGELOG.md | 4 +++- docs/source/Coding/Changelog.md | 11 ++++++++--- evennia/VERSION.txt | 2 +- pyproject.toml | 2 +- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37beca050e..b603ec36ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog -## Main branch +## Evennia 4.1.1 + +April 6, 2024 - [Fix][pull3438]: Error with 'you' mapping in third-person style of `msg_contents` (InspectorCaracal) diff --git a/docs/source/Coding/Changelog.md b/docs/source/Coding/Changelog.md index 3f2dc126cf..b603ec36ca 100644 --- a/docs/source/Coding/Changelog.md +++ b/docs/source/Coding/Changelog.md @@ -1,6 +1,8 @@ # Changelog -## Main branch +## Evennia 4.1.1 + +April 6, 2024 - [Fix][pull3438]: Error with 'you' mapping in third-person style of `msg_contents` (InspectorCaracal) @@ -14,18 +16,21 @@ - [Fix][pull3485]: Typo in `sethome` message (chiizujin) - [Fix][pull3487]: Fix traceback when using `get`,`drop` and `give` with no arguments (InspectorCaracal) -- [Fix][issue3476]: Don't ignore EvEditor commands with wrong capitalization - (Griatch) +- [Fix][issue3476]: Don't ignore EvEditor commands with wrong capitalization (Griatch) - [Fix][issue3477]: The `at_server_reload_start()` hook was not firing on a reload (regression). +- [Fix][issue3488]: `AttributeProperty(, autocreate=False)`, where + `` was mutable would not update/save properly in-place (Griatch) - [Docs] Added new [Server-Lifecycle][doc-server-lifecycle] page to describe the hooks called on server start/stop/reload (Griatch) +- [Docs] Doc typo fixes (Griatch, chiizujin) [pull3438]: https://github.com/evennia/evennia/pull/3446 [pull3485]: https://github.com/evennia/evennia/pull/3485 [pull3487]: https://github.com/evennia/evennia/pull/3487 [issue3476]: https://github.com/evennia/evennia/issues/3476 [issue3477]: https://github.com/evennia/evennia/issues/3477 +[issue3488]: https://github.com/evennia/evennia/issues/3488 [doc-server-lifecycle]: https://www.evennia.com/docs/latest/Concepts/Server-Lifecycle.html diff --git a/evennia/VERSION.txt b/evennia/VERSION.txt index ee74734aa2..627a3f43a6 100644 --- a/evennia/VERSION.txt +++ b/evennia/VERSION.txt @@ -1 +1 @@ -4.1.0 +4.1.1 diff --git a/pyproject.toml b/pyproject.toml index 17a9871c10..7c507aada5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "evennia" -version = "4.1.0" +version = "4.1.1" 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"