diff --git a/CHANGELOG.md b/CHANGELOG.md index b638bbc..160ecbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog -## [Unreleased](https://github.com/gilzoide/godot-lua-pluginscript/compare/0.5.0...HEAD) +## [Unreleased](https://github.com/gilzoide/godot-lua-pluginscript/compare/0.5.1...HEAD) + +## [0.5.1](https://github.com/gilzoide/godot-lua-pluginscript/releases/tag/0.5.1) ### Fixed - Plugin initialization on Windows ([#31](https://github.com/gilzoide/godot-lua-pluginscript/issues/31)) diff --git a/plugin/plugin.cfg b/plugin/plugin.cfg index 5f5607c..9e19a59 100644 --- a/plugin/plugin.cfg +++ b/plugin/plugin.cfg @@ -3,5 +3,5 @@ name="Lua PluginScript" description="Tools for Lua PluginScript: REPL tab and export plugin for minifying scripts" author="gilzoide" -version="0.5.0" +version="0.5.1" script="plugin.gd" diff --git a/src/late_globals.lua b/src/late_globals.lua index 44de336..911a456 100644 --- a/src/late_globals.lua +++ b/src/late_globals.lua @@ -48,8 +48,8 @@ GD = { PropertyHint = PropertyHint, --- `Enumerations.PropertyUsage` PropertyUsage = PropertyUsage, - --- Project version: 0.5.0 - _VERSION = '0.5.0', + --- Project version: 0.5.1 + _VERSION = '0.5.1', } local global_constants = api.godot_get_global_constants()