diff --git a/CHANGES.md b/CHANGES.md index 5e031d44..dfb9bc06 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -# vNext +# 7.4.3 * Add support for running tests through the debugger via VSCode via the gut-extension. # 7.4.2 diff --git a/README.md b/README.md index 3e005b5e..4b8a68f2 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ GUT (Godot Unit Test) is a unit testing framework for the [Godot Engine](https:/ # GUT 7 for Godot 3.x -GUT 7.4.2 is the current version for Godot 3.x +GUT 7.4.3 is the current version for Godot 3.x # Donate/Shameless Plug diff --git a/addons/gut/plugin.cfg b/addons/gut/plugin.cfg index 94cb12b8..846dda91 100644 --- a/addons/gut/plugin.cfg +++ b/addons/gut/plugin.cfg @@ -3,5 +3,5 @@ name="Gut" description="Unit Testing tool for Godot." author="Butch Wesley" -version="7.4.2" +version="7.4.3" script="gut_plugin.gd" diff --git a/addons/gut/utils.gd b/addons/gut/utils.gd index a1e65ba0..9d31dc08 100644 --- a/addons/gut/utils.gd +++ b/addons/gut/utils.gd @@ -98,7 +98,7 @@ var TestCollector = load('res://addons/gut/test_collector.gd') var ThingCounter = load('res://addons/gut/thing_counter.gd') # Source of truth for the GUT version -var version = '7.4.2' +var version = '7.4.3' # The required Godot version as an array. var req_godot = [3, 2, 0] # Used for doing file manipulation stuff so as to not keep making File instances. diff --git a/documentation/docs/conf.py b/documentation/docs/conf.py index f59c87e0..56f4a197 100644 --- a/documentation/docs/conf.py +++ b/documentation/docs/conf.py @@ -6,8 +6,8 @@ copyright = '2023, Butch Wesley' author = 'bitwes' -release = '7.4.2' -version = '7.4.2 for Godot-3' +release = '7.4.3' +version = '7.4.3 for Godot-3' # -- General configuration diff --git a/documentation/docs/index.rst b/documentation/docs/index.rst index 3fea8dbb..8ad47b51 100644 --- a/documentation/docs/index.rst +++ b/documentation/docs/index.rst @@ -63,7 +63,7 @@ Tutorials -Gut 7.4.2 (Godot 3.x) +Gut 7.4.3 (Godot 3.x) ========= GUT (Godot Unit Test) is a utility for writing tests for your Godot Engine game. It allows you to write tests for your gdscripts in gdscript.