diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0c61a07..de20902 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.0.0" + ".": "3.0.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 286aa7a..d1fa534 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog # +## [3.0.1](https://github.com/linchpin/post-type-spotlight/compare/v3.0.0...v3.0.1) (2023-10-25) + + +### Bug Fixes ๐Ÿ› + +* **deps:** update npm frontend ([d60f18b](https://github.com/linchpin/post-type-spotlight/commit/d60f18b7ecb7749bbf2e7b1cbd7f17e06e29d4cb)) + + +### Miscellaneous Chores ๐Ÿงน + +* **deps-dev:** bump @babel/traverse from 7.22.10 to 7.23.2 ([0152dbc](https://github.com/linchpin/post-type-spotlight/commit/0152dbccc686f937d217df342d65b5869976a454)) +* **deps-dev:** bump @babel/traverse from 7.22.10 to 7.23.2 in /blocks ([85b71e0](https://github.com/linchpin/post-type-spotlight/commit/85b71e0be5098e4c6845a4720ab5639071cfd9c2)) +* **deps-dev:** bump postcss from 8.4.27 to 8.4.31 ([b7ffdc2](https://github.com/linchpin/post-type-spotlight/commit/b7ffdc2fe4e6cd8af40b48c14c998f2ca725c312)) +* **deps-dev:** bump postcss from 8.4.27 to 8.4.31 in /blocks ([788b8ad](https://github.com/linchpin/post-type-spotlight/commit/788b8ad29a86941359815b73880353c52d39de9b)) +* **deps:** update 10up/action-wordpress-plugin-deploy action to v2.2.2 ([117bbb7](https://github.com/linchpin/post-type-spotlight/commit/117bbb7401174d516ef2d77a4ab906ab110936ea)) +* **deps:** update actions/checkout action to v4 ([78006dd](https://github.com/linchpin/post-type-spotlight/commit/78006dd566afbbb6d755fc8a2f491873820744a3)) +* **deps:** update dependency friendsofphp/php-cs-fixer to ^3.35.1 ([55d697f](https://github.com/linchpin/post-type-spotlight/commit/55d697f87dda32346a987f10841b2b248307969a)) +* **deps:** update dependency phpseclib/phpseclib to v3.0.33 ([3472117](https://github.com/linchpin/post-type-spotlight/commit/3472117683661df13896a0ef243e05cbf4e604d2)) +* **deps:** update npm dev dependencies ([77e2ab3](https://github.com/linchpin/post-type-spotlight/commit/77e2ab384bc47d42dff0631d562e08eb6d765465)) + ## [3.0.0](https://github.com/linchpin/post-type-spotlight/compare/v3.0.0...v3.0.0) (2023-08-19) diff --git a/README.md b/README.md index e48a2fd..2e78520 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ![Build Status](https://github.com/linchpin/post-type-spotlight/workflows/release-please/badge.svg?raw=true) ![Maintainability](https://api.codeclimate.com/v1/badges/571cf2f2437f6fe80c1a/maintainability) -## Latest Release: 3.0.0 +## Latest Release: 3.0.1 # Post Type Spotlight # diff --git a/blocks/package.json b/blocks/package.json index e021d09..816aa80 100644 --- a/blocks/package.json +++ b/blocks/package.json @@ -1,6 +1,6 @@ { "name": "post-type-spotlight-blocks", - "version": "3.0.0", + "version": "3.0.1", "description": "Blocks Editor Functionality for Post Type Spotlight", "author": "Linchpin", "license": "GPL-2.0-or-later", diff --git a/composer.json b/composer.json index 35216c5..0730f63 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "linchpin/post-type-spotlight", - "version": "3.0.0", + "version": "3.0.1", "description": "A simple plugin to allow authors and admins to feature post types", "homepage": "https://github.com/linchpin/linchpin-com-functionality", "authors": [ diff --git a/package.json b/package.json index 104be18..3234b75 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "post-type-spotlight", - "version": "3.0.0", + "version": "3.0.1", "description": "Easily allows you to designate posts, pages, attachments and custom post types as featured.", "main": "webpack.config.js", "scripts": { diff --git a/post-type-spotlight.php b/post-type-spotlight.php index 9c30034..5d3de17 100644 --- a/post-type-spotlight.php +++ b/post-type-spotlight.php @@ -6,7 +6,7 @@ * Description: Allows admin chosen post types to have a featured post check box on the edit screen. Also adds appropriate classes to front end post display, and allows featured posts to be queried via a taxonomy query. * Requires at least: 5.1 * x-release-please-start-version - * Version: 3.0.0 + * Version: 3.0.1 * x-release-please-end * Author: Linchpin & Jonathan Desrosiers * Author URI: https://linchpin.com/?utm_source=post-type-spotlight&utm_medium=plugin-admin-page&utm_campaign=wp-plugin @@ -26,7 +26,7 @@ if ( ! defined( 'POST_TYPE_SPOTLIGHT_VERSION' ) ) { // x-release-please-start-version - define( 'POST_TYPE_SPOTLIGHT_VERSION', '3.0.0' ); + define( 'POST_TYPE_SPOTLIGHT_VERSION', '3.0.1' ); // x-release-please-end }