diff --git a/CHANGES.md b/CHANGES.md index 01c47595..b7756a25 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,7 +6,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). # 6.6.1 * __Issue 60__: Improved signal assert failure messages in some cases by having them include a list of signals that were emitted for the object. * __Issue 88__: Fixed issue where you couldn't specify the config_file from the command line. - +* __Issue 95__: Fixed issue where sometimes Gut can end up clearing files from `res:\\` when using doubling. # 6.6.0 diff --git a/README.md b/README.md index 6dc3dcc2..9090a197 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ### Godot 3.1 I've started a [3.1 branch](https://github.com/bitwes/Gut/tree/godot_3_1) that I will be keeping inline with master. I've gotten it to run but there are issues. Check open issues and the [3.1 wiki page](https://github.com/bitwes/Gut/wiki/Godot-3.1-Alpha/_edit). -# Gut 6.6.0 +# Gut 6.6.1 GUT (Godot Unit Test) is a utility for writing tests for your Godot Engine game. It allows you to write tests for your gdscript in gdscript. More info can be found in the [wiki](https://github.com/bitwes/Gut/wiki). diff --git a/addons/gut/gut.gd b/addons/gut/gut.gd index 0a03b46b..bb76b049 100644 --- a/addons/gut/gut.gd +++ b/addons/gut/gut.gd @@ -28,7 +28,7 @@ ################################################################################ # View readme for usage details. # -# Version 6.6.0 +# Version 6.6.1 ################################################################################ extends "res://addons/gut/gut_gui.gd" diff --git a/addons/gut/gut_cmdln.gd b/addons/gut/gut_cmdln.gd index 593afb7e..58d57939 100644 --- a/addons/gut/gut_cmdln.gd +++ b/addons/gut/gut_cmdln.gd @@ -37,7 +37,7 @@ # See the readme for a list of options and examples. You can also use the -gh # option to get more information about how to use the command line interface. # -# Version 6.6.0 +# Version 6.6.1 ################################################################################ extends SceneTree diff --git a/addons/gut/plugin.cfg b/addons/gut/plugin.cfg index 999c86ee..6602f19f 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="6.6.0" +version="6.6.1" script="gut_plugin.gd"