diff --git a/CHANGELOG.md b/CHANGELOG.md index 907f0f7f1f..c7f01c2ac0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Main +## Evennia 1.1.1 - Bug fix: Better handler malformed alias-regex given to nickhandler. A regex-relevant character in a channel alias could cause server to not restart. diff --git a/docs/source/Coding/Changelog.md b/docs/source/Coding/Changelog.md index 6c80142361..907f0f7f1f 100644 --- a/docs/source/Coding/Changelog.md +++ b/docs/source/Coding/Changelog.md @@ -1,5 +1,12 @@ # Changelog +## Main + +- Bug fix: Better handler malformed alias-regex given to nickhandler. A + regex-relevant character in a channel alias could cause server to not restart. +- Add `attr` keyword to `create_channel`. This allows setting attributes on + channels at creation, also from `DEFAULT_CHANNELS` definitions. + ## Evennia 1.1.0 Jan 7, 2023 diff --git a/evennia/VERSION.txt b/evennia/VERSION.txt index 9084fa2f71..524cb55242 100644 --- a/evennia/VERSION.txt +++ b/evennia/VERSION.txt @@ -1 +1 @@ -1.1.0 +1.1.1 diff --git a/pyproject.toml b/pyproject.toml index e1d71baa43..ca76bb87a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "evennia" -version = "1.1.0" +version = "1.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"