From b6ccc52a5d4612a83dfcffdc29ac84121ca0313b Mon Sep 17 00:00:00 2001 From: JoachimCoenen Date: Wed, 22 Jun 2022 17:10:09 +0200 Subject: [PATCH] increased version number --- CHANGES.md | 2 +- settings/_applicationSettings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 772eb91..aa528ab 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -## Next Version +## Version 0.3.0-alpha ### Features * Added support for different data pack versions (separate from the MC version). * Added call tips for mcFunction files. diff --git a/settings/_applicationSettings.py b/settings/_applicationSettings.py index f587257..5dffc5d 100644 --- a/settings/_applicationSettings.py +++ b/settings/_applicationSettings.py @@ -198,7 +198,7 @@ def title(self) -> str: @pd.ReadOnlyLabel() @Serialized(shouldSerialize=False, wordWrap=False, label='Version') def version(self) -> str: - return """0.2.1-alpha""" + return """0.3.0-alpha""" organization: str = Computed(default="""Joachim Coenen""", decorators=[pd.NoUI()])