Skip to content

Commit

Permalink
Changelog and readme.txt edits.
Browse files Browse the repository at this point in the history
  • Loading branch information
tbradsha authored and matticbot committed Nov 18, 2024
1 parent fe8068d commit 6bf0a4d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 19 deletions.
17 changes: 6 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +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).

## [0.34.0-alpha] - unreleased

This is an alpha version! The changes listed here are not final.

## [0.34.0] - 2024-11-18
### Removed
- General: Update minimum PHP version to 7.2.
- General: Update minimum PHP version to 7.2. [#40147]

### Fixed
- Fix a fatal error occurring due to a function receiving an unexpected input type.
- Fix a fatal error occurring due to a function receiving an unexpected input type. [#40183]

## [0.33.8] - 2024-11-11
### Changed
Expand Down Expand Up @@ -405,8 +402,7 @@ This is an alpha version! The changes listed here are not final.
- Add Jetpack AI Form section to new Forms landing page [#32726]

### Changed
- Updated package dependencies. [#32803]
- Updated package dependencies. [#32804]
- Updated package dependencies. [#32803] [#32804]

### Fixed
- Fix block icons for display on wp.org [#32754]
Expand Down Expand Up @@ -587,8 +583,7 @@ This is an alpha version! The changes listed here are not final.
- Forms: Include bulk actions menu [#29766]
- Forms: Update Dashboard inbox columns responsiveness and sticky items style [#29914]
- Updated form responses endpoint to embed available filter data. [#29805]
- Updated package dependencies. [#29854]
- Updated package dependencies. [#29857]
- Updated package dependencies. [#29854] [#29857]

### Fixed
- Made feedback bulk actions more explicit and easier to work with. [#29884]
Expand Down Expand Up @@ -722,7 +717,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.34.0-alpha]: https://github.com/automattic/jetpack-forms/compare/v0.33.8...v0.34.0-alpha
[0.34.0]: https://github.com/automattic/jetpack-forms/compare/v0.33.8...v0.34.0
[0.33.8]: https://github.com/automattic/jetpack-forms/compare/v0.33.7...v0.33.8
[0.33.7]: https://github.com/automattic/jetpack-forms/compare/v0.33.6...v0.33.7
[0.33.6]: https://github.com/automattic/jetpack-forms/compare/v0.33.5...v0.33.6
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.2",
"automattic/jetpack-blocks": "^3.0.0-alpha",
"automattic/jetpack-blocks": "^3.0.0",
"automattic/jetpack-assets": "^3.0.0",
"automattic/jetpack-connection": "^6.0.1-alpha",
"automattic/jetpack-connection": "^6.0.1",
"automattic/jetpack-logo": "^3.0.0",
"automattic/jetpack-status": "^5.0.0",
"automattic/jetpack-sync": "^4.0.0"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.1.1",
"automattic/jetpack-changelogger": "^5.0.0",
"automattic/jetpack-connection": "^6.0.1-alpha",
"automattic/jetpack-connection": "^6.0.1",
"automattic/wordbless": "^0.4.1"
},
"suggest": {
Expand Down
8 changes: 4 additions & 4 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.34.0-alpha",
"version": "0.34.0",
"description": "Jetpack Forms",
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/forms/#readme",
"bugs": {
Expand Down Expand Up @@ -32,8 +32,8 @@
],
"dependencies": {
"@automattic/jetpack-analytics": "^0.1.33",
"@automattic/jetpack-components": "^0.61.0-alpha",
"@automattic/jetpack-shared-extension-utils": "^0.15.17-alpha",
"@automattic/jetpack-components": "^0.61.0",
"@automattic/jetpack-shared-extension-utils": "^0.15.17",
"@wordpress/block-editor": "14.6.0",
"@wordpress/blocks": "14.0.0",
"@wordpress/compose": "7.11.0",
Expand Down Expand Up @@ -62,7 +62,7 @@
"@automattic/color-studio": "2.6.0",
"@automattic/jetpack-base-styles": "^0.6.36",
"@automattic/jetpack-webpack-config": "workspace:*",
"@automattic/remove-asset-webpack-plugin": "^1.0.24-alpha",
"@automattic/remove-asset-webpack-plugin": "^1.0.24",
"@babel/core": "7.26.0",
"@babel/runtime": "7.26.0",
"@testing-library/dom": "10.4.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.34.0-alpha';
const PACKAGE_VERSION = '0.34.0';

/**
* Load the contact form module.
Expand Down

0 comments on commit 6bf0a4d

Please sign in to comment.