diff --git a/CHANGELOG.md b/CHANGELOG.md index 325bab6..79b530f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to Consolation will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). We adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.2.1] - 2021-02-16 + +### Fixed +- Make `Console` public so that it can be added via `AddComponent` (courtesy of [@uchar](https://github.com/uchar)) + ## [1.2.0] - 2021-01-04 ### Added diff --git a/Console.cs b/Console.cs index 894da03..e50316d 100644 --- a/Console.cs +++ b/Console.cs @@ -8,7 +8,7 @@ namespace Consolation /// /// A console to display Unity's debug logs in-game. /// - /// Version: 1.2.0 + /// Version: 1.2.1 /// public class Console : MonoBehaviour { diff --git a/package.json b/package.json index 214b517..4af974b 100644 --- a/package.json +++ b/package.json @@ -4,5 +4,5 @@ "keywords": ["console", "debug", "log", "logging"], "name": "com.matthewminer.consolation", "unity": "2017.1", - "version": "1.2.0" + "version": "1.2.1" }