Skip to content

Commit

Permalink
Changelog edits.
Browse files Browse the repository at this point in the history
  • Loading branch information
ice9js authored and matticbot committed Nov 20, 2023
1 parent 8ae7f59 commit da963d7
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 22 deletions.
15 changes: 6 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/class-jetpack-forms.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit da963d7

Please sign in to comment.