diff --git a/projects/packages/post-list/CHANGELOG.md b/projects/packages/post-list/CHANGELOG.md index 8fee18a7fa38f..3ddec6edc7515 100644 --- a/projects/packages/post-list/CHANGELOG.md +++ b/projects/packages/post-list/CHANGELOG.md @@ -5,6 +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.2.4] - 2021-11-19 +### Fixed +- Fixed the stretched thumbnails when using a non-square image. +- Fixed the broken layout after making a quick edit. + +### Changed +- Updated package dependencies + ## [0.2.3] - 2021-11-02 ### Changed - Set `convertDeprecationsToExceptions` true in PHPUnit config. @@ -36,6 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated the default columns displayed on the post and page list screens - Refactored thumbnail preview to function server side. All javascript removed. +[0.2.4]: https://github.com/automattic/jetpack-post-list/compare/v0.2.3...v0.2.4 [0.2.3]: https://github.com/automattic/jetpack-post-list/compare/v0.2.2...v0.2.3 [0.2.2]: https://github.com/automattic/jetpack-post-list/compare/v0.2.1...v0.2.2 [0.2.1]: https://github.com/automattic/jetpack-post-list/compare/v0.2.0...v0.2.1 diff --git a/projects/packages/post-list/changelog/add-assets-wp_register_script-wrapper b/projects/packages/post-list/changelog/add-assets-wp_register_script-wrapper deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/packages/post-list/changelog/add-assets-wp_register_script-wrapper +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/packages/post-list/changelog/fix-post-list-quick-edit b/projects/packages/post-list/changelog/fix-post-list-quick-edit deleted file mode 100644 index 9e69c7a8a0ed3..0000000000000 --- a/projects/packages/post-list/changelog/fix-post-list-quick-edit +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Ensured that the thumbnail and Share action are included in the quick edit response. diff --git a/projects/packages/post-list/changelog/fix-post-list-stretched-thumbnail b/projects/packages/post-list/changelog/fix-post-list-stretched-thumbnail deleted file mode 100644 index 74ff8eee4e456..0000000000000 --- a/projects/packages/post-list/changelog/fix-post-list-stretched-thumbnail +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Crop thumbnail images using the correct aspect ratio diff --git a/projects/packages/post-list/src/class-post-list.php b/projects/packages/post-list/src/class-post-list.php index 7e2c06cf6d5a1..203a8ebc82d94 100644 --- a/projects/packages/post-list/src/class-post-list.php +++ b/projects/packages/post-list/src/class-post-list.php @@ -12,7 +12,7 @@ */ class Post_List { - const PACKAGE_VERSION = '0.2.4-alpha'; + const PACKAGE_VERSION = '0.2.4'; /** * The configuration method that is called from the jetpack-config package.