Skip to content

Commit 916814b

Browse files
committed
Bump version to 0.3.0
1 parent 1a66f35 commit 916814b

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22
## [Unreleased]
3+
4+
5+
## [0.3.0]
36
### Added
47
- `EditorExportPlugin` for minifying Lua scripts with `LuaSrcDiet` on
58
release exports. Minification may be turned off with the
@@ -67,7 +70,8 @@
6770
- API documentation
6871

6972

70-
[Unreleased]: https://github.com/gilzoide/godot-lua-pluginscript/compare/0.2.0...HEAD
73+
[Unreleased]: https://github.com/gilzoide/godot-lua-pluginscript/compare/0.3.0...HEAD
74+
[0.3.0]: https://github.com/gilzoide/godot-lua-pluginscript/releases/tag/0.3.0
7175
[0.2.0]: https://github.com/gilzoide/godot-lua-pluginscript/releases/tag/0.2.0
7276
[0.1.0]: https://github.com/gilzoide/godot-lua-pluginscript/releases/tag/0.1.0
7377
[r1]: https://github.com/gilzoide/godot-lua-pluginscript/releases/tag/r1

plugin/plugin.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[plugin]
22

33
name="Lua PluginScript"
4-
description="Tools for Lua PluginScript: REPL tab"
4+
description="Tools for Lua PluginScript: REPL tab and export plugin for minifying scripts"
55
author="gilzoide"
6-
version="0.1.0"
6+
version="0.3.0"
77
script="plugin.gd"

src/late_globals.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ GD = {
4848
PropertyHint = PropertyHint,
4949
--- `Enumerations.PropertyUsage`
5050
PropertyUsage = PropertyUsage,
51-
--- Project version: 0.2.0
52-
_VERSION = '0.2.0',
51+
--- Project version: 0.3.0
52+
_VERSION = '0.3.0',
5353
}
5454

5555
local global_constants = api.godot_get_global_constants()

0 commit comments

Comments
 (0)