diff --git a/CHANGELOG.md b/CHANGELOG.md index 22b6d7f..c025fc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. 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). +## [1.2.1] - 2021-07-01 + +### Fixed + +- Settings to be correctly loaded + ## [1.2.0] - 2021-06-30 ### Changed diff --git a/Editor/AutoSceneSettings.cs b/Editor/AutoSceneSettings.cs index d420ff4..9338206 100644 --- a/Editor/AutoSceneSettings.cs +++ b/Editor/AutoSceneSettings.cs @@ -8,7 +8,7 @@ namespace chsxf [Serializable] public class AutoSceneSettings { - public const string VERSION = "1.2.0"; + public const string VERSION = "1.2.1"; [SerializeField] private string version = VERSION; public string Version { get { return version; } } diff --git a/package.json b/package.json index cf5c735..26a179b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dev.chsxf.autoscene", - "version": "1.2.0", + "version": "1.2.1", "displayName": "AutoScene", "description": "AutoScene allows you to work on your Unity scene setup in the editor while loading a specific scene when entering Play mode.", "unity": "2018.4",