Skip to content

Commit

Permalink
Bump version to 0.9.1-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
TokisanGames committed Dec 20, 2023
1 parent 65f36b1 commit 24a5993
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Terrain3D.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@
<None Include=".gitignore" />
<None Include="AUTHORS.md" />
<None Include="CONTRIBUTING.md" />
<None Include="doc\conf.py" />
<None Include="doc\docs\texture_painting.md" />
<None Include="doc\index.rst" />
<None Include="project\addons\terrain_3d\plugin.cfg" />
Expand Down Expand Up @@ -209,6 +210,7 @@
<Text Include="doc\docs\texture_prep.md" />
<Text Include="doc\docs\previous_engines.md" />
<Text Include="doc\docs\building_from_source.md" />
<Text Include="doc\update_process.txt" />
<Text Include="doc\_static\theme_overrides.css" />
<Text Include="LICENSE.txt" />
<Text Include="doc\docs\navigation.md" />
Expand Down
6 changes: 6 additions & 0 deletions Terrain3D.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,9 @@
<None Include="doc\docs\texture_painting.md">
<Filter>2. Docs</Filter>
</None>
<None Include="doc\conf.py">
<Filter>1. Project Files</Filter>
</None>
</ItemGroup>
<ItemGroup>
<Text Include=".readthedocs.yaml">
Expand Down Expand Up @@ -231,6 +234,9 @@
<Text Include="doc\docs\navigation.md">
<Filter>2. Docs</Filter>
</Text>
<Text Include="doc\update_process.txt">
<Filter>2. Docs</Filter>
</Text>
</ItemGroup>
<ItemGroup>
<Xml Include="doc\classes\Terrain3D.xml">
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = 'Terrain3D'
copyright = '2023 Cory Petkovsek, Roope Palmroos, and Contributors'
author = 'Cory Petkovsek, Roope Palmroos, and Contributors'
release = '0.9.0'
release = '0.9.1'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion project/addons/terrain_3d/plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
name="Terrain3D"
description="A high performance, editable terrain system for Godot 4."
author="Cory Petkovsek & Roope Palmroos"
version="0.9.0-beta"
version="0.9.1-dev"
script="editor/editor.gd"
2 changes: 1 addition & 1 deletion src/terrain_3d.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Terrain3D : public Node3D {

private:
// Terrain state
String _version = "0.9.0-beta";
String _version = "0.9.1-dev";
bool _is_inside_world = false;
bool _initialized = false;

Expand Down

0 comments on commit 24a5993

Please sign in to comment.