Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwes committed Feb 29, 2024
1 parent 1d512a7 commit c11ba9d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion addons/gut/plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion addons/gut/utils.gd
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions documentation/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit c11ba9d

Please sign in to comment.