diff --git a/CHANGELOG.md b/CHANGELOG.md index 847d34437a..8c27159731 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog -## Main branch (git) +## Evennia 1.2.1 + +Feb 26, 2023 - Bug fix: Make sure command parser gives precedence to longer cmd-aliases. So if sending `smile at` and the cmd `smile` has alias `smile at`, the match is @@ -12,9 +14,10 @@ - Bug fix: Building Menu contrib menu no using Replace over Union mergetype to avoid clashing with in-game commands while building - Feature: RPSystem contrib `sdesc` command can now view/delete your sdesc. -- Bug fix: Change so `script obj = [scriptname|id]` is required to manipulate scripts - on objects; `script scriptname|id` only works on global scripts. -- Doc: Add warning about `Django-wiki` (in wiki tutorial) only supporting Django <4.0. +- Bug fix: Change so `script obj = [scriptname|id]` is required to manipulate + scripts on objects; `script scriptname|id` only works on global scripts. +- Doc: Add warning about `Django-wiki` (in wiki tutorial) only supporting + Django <4.0. - Doc: Expanded `XYZGrid` docstring to clarify `MapLink` class will not itself spawn anything, children must define their prototypes explicitly. - Doc: Explained why `AttributeProperty.at_get/set` will not be called if diff --git a/docs/source/Coding/Changelog.md b/docs/source/Coding/Changelog.md index 847d34437a..8c27159731 100644 --- a/docs/source/Coding/Changelog.md +++ b/docs/source/Coding/Changelog.md @@ -1,6 +1,8 @@ # Changelog -## Main branch (git) +## Evennia 1.2.1 + +Feb 26, 2023 - Bug fix: Make sure command parser gives precedence to longer cmd-aliases. So if sending `smile at` and the cmd `smile` has alias `smile at`, the match is @@ -12,9 +14,10 @@ - Bug fix: Building Menu contrib menu no using Replace over Union mergetype to avoid clashing with in-game commands while building - Feature: RPSystem contrib `sdesc` command can now view/delete your sdesc. -- Bug fix: Change so `script obj = [scriptname|id]` is required to manipulate scripts - on objects; `script scriptname|id` only works on global scripts. -- Doc: Add warning about `Django-wiki` (in wiki tutorial) only supporting Django <4.0. +- Bug fix: Change so `script obj = [scriptname|id]` is required to manipulate + scripts on objects; `script scriptname|id` only works on global scripts. +- Doc: Add warning about `Django-wiki` (in wiki tutorial) only supporting + Django <4.0. - Doc: Expanded `XYZGrid` docstring to clarify `MapLink` class will not itself spawn anything, children must define their prototypes explicitly. - Doc: Explained why `AttributeProperty.at_get/set` will not be called if diff --git a/evennia/VERSION.txt b/evennia/VERSION.txt index 26aaba0e86..6085e94650 100644 --- a/evennia/VERSION.txt +++ b/evennia/VERSION.txt @@ -1 +1 @@ -1.2.0 +1.2.1 diff --git a/pyproject.toml b/pyproject.toml index b69da71cfb..2534c1b68f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "evennia" -version = "1.2.0" +version = "1.2.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"