diff --git a/CHANGELOG.md b/CHANGELOG.md index 6490310..e99875c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ 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). +## 2.0.1 - 2024-10-25 + +### Fixed +- Fixed a bug when changing an entry's type, where TinyMCE fields that existed on the former entry type would not appear after the change + ## 2.0.0 - 2024-04-07 ### Added diff --git a/composer.json b/composer.json index 8ada28c..a8a3124 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "spicyweb/craft-tinymce", "description": "Adds the TinyMCE rich text editor as a Craft CMS field type", - "version": "2.0.0", + "version": "2.0.1", "type": "craft-plugin", "keywords": [ "cms", @@ -21,7 +21,7 @@ "support": { "issues": "https://github.com/spicywebau/craft-tinymce/issues", "source": "https://github.com/spicywebau/craft-tinymce", - "docs": "https://github.com/spicywebau/craft-tinymce/blob/2.0.0-beta.1/README.md", + "docs": "https://github.com/spicywebau/craft-tinymce/blob/2.0.1/README.md", "rss": "https://github.com/spicywebau/craft-tinymce/commits/2.x.atom" }, "require": { @@ -39,7 +39,7 @@ "name": "TinyMCE Field", "class": "spicyweb\\tinymce\\Plugin", "changelogUrl": "https://github.com/spicywebau/craft-tinymce/blob/2.x/CHANGELOG.md", - "downloadUrl": "https://github.com/spicywebau/craft-tinymce/archive/refs/tags/2.0.0-beta.1.zip" + "downloadUrl": "https://github.com/spicywebau/craft-tinymce/archive/refs/tags/2.0.1.zip" }, "minimum-stability": "dev", "prefer-stable": true, diff --git a/package.json b/package.json index 4797207..53dee77 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "craft-tinymce", - "version": "2.0.0", + "version": "2.0.1", "description": "Adds the TinyMCE rich text editor as a Craft CMS field type", "private": true, "main": "client/src/main.ts",