From 37a05f4b1748cc97fecdcebd84e94be5585fd8a2 Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 14 Jul 2023 15:12:19 +0200 Subject: [PATCH] Evennia 2.1.0 minor release --- CHANGELOG.md | 4 +++- docs/source/Coding/Changelog.md | 4 +++- evennia/VERSION.txt | 2 +- pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ace124344a..0d28b46a22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,14 @@ # Changelog -## Main +## Evennia 2.1.0 +- Fix: The new `ExtendedRoom` contrib has a bug when dug with no descriptions. - Fix: Clean up `get_sides` function in evadventure tutorial to return also the calling combatant with its `allies` return, to make it easier to reason around. - Feature: Add `SSL_CERTIFICATE_ISSUERS` setting for customizing Telnet+SSL. - Contrib: Refactored `dice.roll` contrib function to use `safe_eval`. Can now optionally be used as `dice.roll("2d10 + 4 > 10")`. Old way works too. +- Lots of doc updates. ## Evennia 2.0.1 diff --git a/docs/source/Coding/Changelog.md b/docs/source/Coding/Changelog.md index ace124344a..0d28b46a22 100644 --- a/docs/source/Coding/Changelog.md +++ b/docs/source/Coding/Changelog.md @@ -1,12 +1,14 @@ # Changelog -## Main +## Evennia 2.1.0 +- Fix: The new `ExtendedRoom` contrib has a bug when dug with no descriptions. - Fix: Clean up `get_sides` function in evadventure tutorial to return also the calling combatant with its `allies` return, to make it easier to reason around. - Feature: Add `SSL_CERTIFICATE_ISSUERS` setting for customizing Telnet+SSL. - Contrib: Refactored `dice.roll` contrib function to use `safe_eval`. Can now optionally be used as `dice.roll("2d10 + 4 > 10")`. Old way works too. +- Lots of doc updates. ## Evennia 2.0.1 diff --git a/evennia/VERSION.txt b/evennia/VERSION.txt index 38f77a65b3..7ec1d6db40 100644 --- a/evennia/VERSION.txt +++ b/evennia/VERSION.txt @@ -1 +1 @@ -2.0.1 +2.1.0 diff --git a/pyproject.toml b/pyproject.toml index f991ceb713..3f95c69bd8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "evennia" -version = "2.0.1" +version = "2.1.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"