Skip to content

Commit

Permalink
chore(main): release 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronware committed Oct 25, 2023
1 parent 079ec7e commit 1c1585b
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "3.0.0"
".": "3.0.1"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog #

## [3.0.1](https://github.com/linchpin/post-type-spotlight/compare/v3.0.0...v3.0.1) (2023-10-25)


### 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:** 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 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)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

<!-- x-release-please-start-version -->
## Latest Release: 3.0.0
## Latest Release: 3.0.1
<!-- x-release-please-end -->

# Post Type Spotlight #
Expand Down
4 changes: 2 additions & 2 deletions blocks/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -26,6 +26,6 @@
"lodash": "4.17.21"
},
"devDependencies": {
"@wordpress/scripts": "^26.15.0"
"@wordpress/scripts": "^26.11.0"
}
}
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -19,9 +19,9 @@
"license": "GPL",
"devDependencies": {
"resolve-url-loader": "^5.0.0",
"@wordpress/scripts": "^26.15.0",
"@wordpress/scripts": "^26.11.0",
"mini-css-extract-plugin": "^2.7.6",
"webpack": "5.89.0",
"webpack": "5.88.2",
"webpack-cli": "5.1.4"
},
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions post-type-spotlight.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
}

Expand Down

0 comments on commit 1c1585b

Please sign in to comment.