Skip to content

Commit

Permalink
Update version to 0.9.3a
Browse files Browse the repository at this point in the history
  • Loading branch information
TokisanGames committed Nov 3, 2024
1 parent 66a2b1e commit 469b683
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions doc/api/class_terrain3d.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Properties
+------------------------------------------------------------------------+------------------------------------------------------------------------+----------------+
| :ref:`Terrain3DTextureList<class_Terrain3DTextureList>` | :ref:`texture_list<class_Terrain3D_property_texture_list>` | |
+------------------------------------------------------------------------+------------------------------------------------------------------------+----------------+
| :ref:`String<class_String>` | :ref:`version<class_Terrain3D_property_version>` | ``"0.9.3"`` |
| :ref:`String<class_String>` | :ref:`version<class_Terrain3D_property_version>` | ``"0.9.3a"`` |
+------------------------------------------------------------------------+------------------------------------------------------------------------+----------------+
| :ref:`float<class_float>` | :ref:`vertex_spacing<class_Terrain3D_property_vertex_spacing>` | ``1.0`` |
+------------------------------------------------------------------------+------------------------------------------------------------------------+----------------+
Expand Down Expand Up @@ -685,7 +685,7 @@ Deprecated. See :ref:`assets<class_Terrain3D_property_assets>`.

.. rst-class:: classref-property

:ref:`String<class_String>` **version** = ``"0.9.3"`` :ref:`🔗<class_Terrain3D_property_version>`
:ref:`String<class_String>` **version** = ``"0.9.3a"`` :ref:`🔗<class_Terrain3D_property_version>`

.. rst-class:: classref-property-setget

Expand Down
2 changes: 1 addition & 1 deletion doc/classes/Terrain3D.xml
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
<member name="texture_list" type="Terrain3DTextureList" setter="set_texture_list" getter="get_texture_list">
Deprecated. See [member assets].
</member>
<member name="version" type="String" setter="" getter="get_version" default="&quot;0.9.3&quot;">
<member name="version" type="String" setter="" getter="get_version" default="&quot;0.9.3a&quot;">
The current version of Terrain3D.
</member>
<member name="vertex_spacing" type="float" setter="set_vertex_spacing" getter="get_vertex_spacing" default="1.0">
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 = '2024 Cory Petkovsek, Roope Palmroos, and Contributors'
author = 'Cory Petkovsek, Roope Palmroos, and Contributors'
release = '0.9.3'
release = '0.9.3a'

# -- 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.3"
version="0.9.3a"
script="editor.gd"
2 changes: 1 addition & 1 deletion src/terrain_3d.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class Terrain3D : public Node3D {
};

private:
String _version = "0.9.3";
String _version = "0.9.3a";
String _data_directory;
bool _is_inside_world = false;
bool _initialized = false;
Expand Down

0 comments on commit 469b683

Please sign in to comment.