From 2b4466b3bc6b60c6acf5a84a109fba8530408e21 Mon Sep 17 00:00:00 2001 From: JoachimCoenen Date: Tue, 28 Dec 2021 11:45:19 +0100 Subject: [PATCH] update CHANGES.md & increase version number --- CHANGES.md | 8 ++++++++ settings/_applicationSettings.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index b27d29c..c873abe 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,11 @@ +## Version 0.2.1-alpha +### Fixes + * Fixed crash in `clickableRangesForFilterArgs(...)` (#19) + * Fixed crash in `getBestFAMatch(...)` (#20) + +## Improvements + * Slightly improved suggestions for coordinates + ## Version 0.2.0-alpha ### Features * Added support for MC versions 1.17 & 1.18 (can be changed in settings) diff --git a/settings/_applicationSettings.py b/settings/_applicationSettings.py index 90204de..4388bae 100644 --- a/settings/_applicationSettings.py +++ b/settings/_applicationSettings.py @@ -180,7 +180,7 @@ def title(self) -> str: @pd.ReadOnlyLabel() @Serialized(shouldSerialize=False, wordWrap=False, label='Version') def version(self) -> str: - return """0.2.0-alpha""" + return """0.2.1-alpha""" organization: str = Computed(default="""Joachim Coenen""", decorators=[pd.NoUI()])