Skip to content

Commit

Permalink
updated version number
Browse files Browse the repository at this point in the history
  • Loading branch information
JoachimCoenen committed Dec 3, 2023
1 parent 4aeaf46 commit 9e93090
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
## Next Version
## 0.7.0-alpha
### Features
* Added validation, parsing, etc. for following JsonArgumentTypes: `minecraft:score_holder`, `minecraft:objective`, `minecraft:target_selector`, `minecraft:block_pos`, `minecraft:color`, and `minecraft:uuid`.
* Added syntax highlighting for target_selector_scores.
* Added target_selector_advancements.
* Added syntax validation and code suggestions for values
* Added syntax highlighting for filter argument target_selector_scores.
* Added filter argument target_selector_advancements.
* Added syntax validation and code suggestions for values of filter arguments

### Improvements
* Added bounds checking and suggestions for numbers in commands.
Expand Down
2 changes: 1 addition & 1 deletion base/model/applicationSettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ class AboutSettings(SerializableDataclass):

title: str = field(default="Datapack Editor", metadata=catMeta(serialize=False, kwargs=dict(wordWrap=False, label=' ', style=getStyles().title), decorators=[pd.ReadOnlyLabel()]))

version: str = field(default="""0.6.0-alpha""", metadata=catMeta(serialize=False, kwargs=dict(wordWrap=False, label='Version'), decorators=[pd.ReadOnlyLabel()]))
version: str = field(default="""0.7.0-alpha""", metadata=catMeta(serialize=False, kwargs=dict(wordWrap=False, label='Version'), decorators=[pd.ReadOnlyLabel()]))

# @pd.NoUI()
@property
Expand Down

0 comments on commit 9e93090

Please sign in to comment.