From da963d74c970089d6d339da1d6e65ea848a48407 Mon Sep 17 00:00:00 2001 From: ice9js Date: Mon, 20 Nov 2023 20:03:54 +0000 Subject: [PATCH] Changelog edits. Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/6935089163 --- CHANGELOG.md | 15 ++++++--------- composer.json | 12 ++++++------ package.json | 12 ++++++------ src/class-jetpack-forms.php | 2 +- 4 files changed, 19 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35bc354..e8e8428 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,17 +5,14 @@ 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). -## [0.24.0-alpha] - unreleased - -This is an alpha version! The changes listed here are not final. - +## [0.24.0] - 2023-11-20 ### Changed -- Code Modernization: Replace usage of strpos() with str_starts_with(). -- The package now requires PHP >= 7.0. +- Replaced usage of strpos() with str_starts_with(). [#34135] +- Updated required PHP version to >= 7.0. [#34192] ### Fixed -- Add an accessible name to the Contact Form dropdown rendered in the front-end -- Avoid errors when a saved feedback form does not have the expected WP_Post format. +- Added an accessible name to the Contact Form dropdown rendered in the front-end. [#34139] +- Avoid errors when a saved feedback form does not have the expected WP_Post format. [#34129] ## [0.23.1] - 2023-11-14 ### Changed @@ -374,7 +371,7 @@ This is an alpha version! The changes listed here are not final. - Added a new jetpack/forms package [#28409] - Added a public load_contact_form method for initializing the contact form module. [#28416] -[0.24.0-alpha]: https://github.com/automattic/jetpack-forms/compare/v0.23.1...v0.24.0-alpha +[0.24.0]: https://github.com/automattic/jetpack-forms/compare/v0.23.1...v0.24.0 [0.23.1]: https://github.com/automattic/jetpack-forms/compare/v0.23.0...v0.23.1 [0.23.0]: https://github.com/automattic/jetpack-forms/compare/v0.22.6...v0.23.0 [0.22.6]: https://github.com/automattic/jetpack-forms/compare/v0.22.5...v0.22.6 diff --git a/composer.json b/composer.json index d328249..48fdbb0 100644 --- a/composer.json +++ b/composer.json @@ -5,15 +5,15 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.0", - "automattic/jetpack-blocks": "^2.0.0-alpha", - "automattic/jetpack-assets": "^2.0.0-alpha", - "automattic/jetpack-connection": "^2.0.0-alpha", - "automattic/jetpack-status": "^2.0.0-alpha" + "automattic/jetpack-blocks": "^2.0.0", + "automattic/jetpack-assets": "^2.0.0", + "automattic/jetpack-connection": "^2.0.0", + "automattic/jetpack-status": "^2.0.0" }, "require-dev": { "yoast/phpunit-polyfills": "1.1.0", - "automattic/jetpack-changelogger": "^4.0.0-alpha", - "automattic/jetpack-connection": "^2.0.0-alpha", + "automattic/jetpack-changelogger": "^4.0.0", + "automattic/jetpack-connection": "^2.0.0", "automattic/wordbless": "^0.4.1" }, "suggest": { diff --git a/package.json b/package.json index 23d8515..5451b66 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-forms", - "version": "0.24.0-alpha", + "version": "0.24.0", "description": "Jetpack Forms", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/forms/#readme", "bugs": { @@ -29,9 +29,9 @@ "extends @wordpress/browserslist-config" ], "dependencies": { - "@automattic/jetpack-analytics": "^0.1.28-alpha", - "@automattic/jetpack-components": "^0.45.2-alpha", - "@automattic/jetpack-shared-extension-utils": "^0.13.2-alpha", + "@automattic/jetpack-analytics": "^0.1.28", + "@automattic/jetpack-components": "^0.45.2", + "@automattic/jetpack-shared-extension-utils": "^0.13.2", "@wordpress/block-editor": "12.13.0", "@wordpress/blocks": "12.22.0", "@wordpress/compose": "6.22.0", @@ -57,9 +57,9 @@ }, "devDependencies": { "@automattic/color-studio": "2.5.0", - "@automattic/jetpack-base-styles": "^0.6.13-alpha", + "@automattic/jetpack-base-styles": "^0.6.13", "@automattic/jetpack-webpack-config": "workspace:*", - "@automattic/remove-asset-webpack-plugin": "^1.0.20-alpha", + "@automattic/remove-asset-webpack-plugin": "^1.0.20", "@babel/core": "7.23.2", "@babel/runtime": "7.23.2", "@wordpress/api-fetch": "6.42.0", diff --git a/src/class-jetpack-forms.php b/src/class-jetpack-forms.php index 1422da7..963ce1d 100644 --- a/src/class-jetpack-forms.php +++ b/src/class-jetpack-forms.php @@ -15,7 +15,7 @@ */ class Jetpack_Forms { - const PACKAGE_VERSION = '0.24.0-alpha'; + const PACKAGE_VERSION = '0.24.0'; /** * Load the contact form module.