From 64f23158156064d7c9d5529ffc37737a1330fd63 Mon Sep 17 00:00:00 2001 From: DavidF-Dev Date: Sun, 22 Aug 2021 09:51:33 +1000 Subject: [PATCH] Updated version to 1.0.0. --- CHANGELOG.md | 3 +++ DOCUMENTATION.md | 2 +- Runtime/DevConsoleMono.cs | 2 +- package.json | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 737517a..99326c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [1.0.0] - 2021-08-22 +- Initial major release. - Added LogException methods. - Added DisableToggleKey method. - Changed the size of the input field so that the text is larger. diff --git a/DOCUMENTATION.md b/DOCUMENTATION.md index d2098c5..17dc833 100644 --- a/DOCUMENTATION.md +++ b/DOCUMENTATION.md @@ -1,5 +1,5 @@ # Documentation -In-game Developer Console for Unity by DavidFDev (v0.2.3-alpha).
+In-game Developer Console for Unity by DavidFDev (v1.0.0).
It is recommended to view this file in a markdown viewer. View on [GitHub](https://github.com/DavidF-Dev/Unity-DeveloperConsole/blob/main/DOCUMENTATION.md). diff --git a/Runtime/DevConsoleMono.cs b/Runtime/DevConsoleMono.cs index 23d03d3..599744c 100644 --- a/Runtime/DevConsoleMono.cs +++ b/Runtime/DevConsoleMono.cs @@ -106,7 +106,7 @@ internal sealed class DevConsoleMono : MonoBehaviour #endregion - private static readonly Version _version = new Version(0, 2, 3); + private static readonly Version _version = new Version(1, 0, 0); private static readonly string[] _permanentCommands = { "devconsole", "commands", "help", "print", "clear", "reset", "bind", "unbind", "bindings" diff --git a/package.json b/package.json index 484d882..5659a95 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.davidfdev.devconsole", - "version": "0.2.3-alpha", + "version": "1.0.0", "displayName": "In-game Developer Console by DavidFDev", "description": "A user-friendly in-game developer console that allows developers or players to execute commands or view incoming Unity messages. (MIT License)", "unity": "2019.1",