Skip to content

Commit 64f2315

Browse files
committed
Updated version to 1.0.0.
1 parent 3cc1067 commit 64f2315

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [1.0.0] - 2021-08-22
10+
- Initial major release.
811
- Added LogException methods.
912
- Added DisableToggleKey method.
1013
- Changed the size of the input field so that the text is larger.

DOCUMENTATION.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Documentation
2-
In-game Developer Console for Unity by DavidFDev (v0.2.3-alpha).</br>
2+
In-game Developer Console for Unity by DavidFDev (v1.0.0).</br>
33
It is recommended to view this file in a markdown viewer.
44
View on [GitHub](https://github.com/DavidF-Dev/Unity-DeveloperConsole/blob/main/DOCUMENTATION.md).
55

Runtime/DevConsoleMono.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ internal sealed class DevConsoleMono : MonoBehaviour
106106

107107
#endregion
108108

109-
private static readonly Version _version = new Version(0, 2, 3);
109+
private static readonly Version _version = new Version(1, 0, 0);
110110
private static readonly string[] _permanentCommands =
111111
{
112112
"devconsole", "commands", "help", "print", "clear", "reset", "bind", "unbind", "bindings"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.davidfdev.devconsole",
3-
"version": "0.2.3-alpha",
3+
"version": "1.0.0",
44
"displayName": "In-game Developer Console by DavidFDev",
55
"description": "A user-friendly in-game developer console that allows developers or players to execute commands or view incoming Unity messages. (MIT License)",
66
"unity": "2019.1",

0 commit comments

Comments
 (0)