Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump 1.2.0 release #51

Merged
merged 2 commits into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ Code can then be written to query and display all people or press releases relat

## Changelog

### 1.2.0

* Do not show "Add New" term option for shadow taxonomies, which are automatically managed. Thanks [@s3rgiosan](https://github.com/s3rgiosan)!
* Do not show shadow terms in REST API to unauthenticated users if their original post type is not publicly available via REST endpoint.

### 1.1.0

* Add filtering to shadow taxonomy taxonomy arguments.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "wordpress-plugin",
"minimum-stability": "stable",
"require-dev": {
"happyprime/coding-standards": "^0.0.3",
"happyprime/coding-standards": "*",
"phpcompatibility/php-compatibility": "dev-develop as 9.99.99"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion includes/taxonomy.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ function can_associate_posts(): bool {
*
* @since 1.0.0
*
* @param \WP_REST_Request $request The vote submission request.
* @param \WP_REST_Request $request The request to associate posts.
* @return \WP_REST_Response The response data.
*/
function handle_rest_associate( \WP_REST_Request $request ): \WP_REST_Response {
Expand Down
2 changes: 1 addition & 1 deletion plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Shadow Terms
* Description: Use terms from generated taxonomies to associate related content.
* Version: 1.1.0
* Version: 1.2.0
* Plugin URI: https://github.com/happyprime/shadow-terms/
* Author: Happy Prime
* Author URI: https://happyprime.co
Expand Down
9 changes: 7 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: happyprime, jeremyfelt, slocker, philcable, wpgirl369
Tags: terms, related, content
Requires at least: 5.9
Tested up to: 6.3
Stable tag: 1.1.0
Tested up to: 6.4
Stable tag: 1.2.0
License: GPLv2 or later
Requires PHP: 7.4

Expand Down Expand Up @@ -40,6 +40,11 @@ Code can then be written to query and display all people or press releases relat

## Changelog

### 1.2.0

* Do not show "Add New" term option for shadow taxonomies, which are automatically managed. Thanks [@s3rgiosan](https://profiles.wordpress.org/s3rgiosan/)!
* Do not show shadow terms in REST API to unauthenticated users if their original post type is not publicly available via REST endpoint.

### 1.1.0

* Add filtering to shadow taxonomy taxonomy arguments.
Expand Down
Loading