From 24d20dfc6f6b51f47adabb4e28bbf4d79f4bc3db Mon Sep 17 00:00:00 2001 From: Jan Henckens Date: Fri, 16 Feb 2024 16:09:37 +0100 Subject: [PATCH] Schema version update --- CHANGELOG.md | 6 +++++- composer.json | 2 +- src/SeoFields.php | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 811b743..4644367 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## 4.0.5 - 2024-02-16 +### Fixed +- Change schema version to fix an issue with migrations from 4.0.0 not being applied correctly. + + ## 4.0.4 - 2024-02-05 ### Fixed - Fixed an issue where the "Allow sitename to be hidden" option would not work ([#90](https://github.com/studioespresso/craft-seo-fields/issues/90)) - ## 4.0.3 - 2024-02-05 ### Fixed - Fixed a permissions issue on sites with multiple users and user groups diff --git a/composer.json b/composer.json index 181639f..64c54a9 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "studioespresso/craft-seo-fields", "description": "Fields for your SEO & OG meta data", "type": "craft-plugin", - "version": "4.0.4", + "version": "4.0.5", "keywords": [ "craft", "cms", diff --git a/src/SeoFields.php b/src/SeoFields.php index 1bb8dd0..b993e48 100644 --- a/src/SeoFields.php +++ b/src/SeoFields.php @@ -82,7 +82,7 @@ class SeoFields extends Plugin // Public Properties // ========================================================================= - public string $schemaVersion = "2.0.0"; + public string $schemaVersion = "4.0.0"; public const EVENT_SEOFIELDS_REGISTER_ELEMENT = "registerSeoElement";