From 5797b711dba38a0d6e8496c34db83637953bf703 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 11 Aug 2024 10:46:41 +0200 Subject: [PATCH] Evennia 4.3.0 minor release --- CHANGELOG.md | 4 +++- docs/source/Coding/Changelog.md | 11 +++++++++-- docs/source/index.md | 2 +- evennia/VERSION.txt | 2 +- pyproject.toml | 2 +- 5 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3103ad278a..f67002633d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog -## Main +## Evennia 4.3.0 + +Aug 11, 2024 - [Feat][pull3531]: New contrib; `in-game reports` for handling user reports, bugs etc in-game (InspectorCaracal) diff --git a/docs/source/Coding/Changelog.md b/docs/source/Coding/Changelog.md index ca8f30c1bf..f67002633d 100644 --- a/docs/source/Coding/Changelog.md +++ b/docs/source/Coding/Changelog.md @@ -1,8 +1,10 @@ # Changelog -## Main +## Evennia 4.3.0 -- [Feat][pull3531]: New contrib; `in-game reports` for handling user reportgs, +Aug 11, 2024 + +- [Feat][pull3531]: New contrib; `in-game reports` for handling user reports, bugs etc in-game (InspectorCaracal) - [Feat][pull3586]: Add ANSI color support `|U`, `|I`, `|i`, `|s`, `|S` for underline reset, italic/reset and strikethrough/reset (0xDEADFED5) @@ -11,12 +13,15 @@ underline reset, italic/reset and strikethrough/reset (0xDEADFED5) - [Feat][pull3582]: Add true-color parsing/fallback for ANSIString (0xDEADFED5) - [Fix][pull3571]: Better visual display of partial multimatch search results (InspectorCaracal) +- [Fix][issue3378]: Prototype 'alias' key was not properly homogenized to a list + (Griatch) - [Fix][pull3550]: Issue where rpsystem contrib search would do a global instead of local search on multimatch (InspectorCaracal) - [Fix][pull3585]: `TagCmd.switch_options` was misnamed (erratic-pattern) - [Fix][pull3580]: Fix typo that made `find/loc` show the wrong dbref in result (erratic-pattern) - [Fix][pull3571]: Issue disambiguating between certain partial multimatches (InspectorCaracal) +- [Fix][pull3589]: Fix regex escaping in utils.py for future Python versions (hhsiao) - [Docs]: Add True-color description for Colors documentation (0xDEADFED5) - [Docs]: Doc fixes (Griatch, InspectorCaracal, 0xDEADFED5) @@ -28,6 +33,8 @@ underline reset, italic/reset and strikethrough/reset (0xDEADFED5) [pull3531]: https://github.com/evennia/evennia/pull/3531 [pull3571]: https://github.com/evennia/evennia/pull/3571 [pull3582]: https://github.com/evennia/evennia/pull/3582 +[pull3589]: https://github.com/evennia/evennia/pull/3589 +[issue3378]: https://github.com/evennia/evennia/issues/3578 ## Evennia 4.2.0 diff --git a/docs/source/index.md b/docs/source/index.md index 9495d3117d..d043858fd5 100644 --- a/docs/source/index.md +++ b/docs/source/index.md @@ -1,6 +1,6 @@ # Evennia Documentation -This is the manual of [Evennia](https://www.evennia.com), the open source Python `MU*` creation system. Use the Search bar on the left to find or discover interesting articles. This manual was last updated July 20, 2024, see the [Evennia Changelog](Coding/Changelog.md). Latest released Evennia version is 4.2.0. +This is the manual of [Evennia](https://www.evennia.com), the open source Python `MU*` creation system. Use the Search bar on the left to find or discover interesting articles. This manual was last updated August 11, 2024, see the [Evennia Changelog](Coding/Changelog.md). Latest released Evennia version is 4.3.0. - [Introduction](./Evennia-Introduction.md) - what is this Evennia thing? - [Evennia in Pictures](./Evennia-In-Pictures.md) - a visual overview of Evennia diff --git a/evennia/VERSION.txt b/evennia/VERSION.txt index 6aba2b245a..80895903a1 100644 --- a/evennia/VERSION.txt +++ b/evennia/VERSION.txt @@ -1 +1 @@ -4.2.0 +4.3.0 diff --git a/pyproject.toml b/pyproject.toml index 3463aff417..414f20dce6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "evennia" -version = "4.2.0" +version = "4.3.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"