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

Merge release/3.5.15 back into develop #991

Merged
merged 2 commits into from
Sep 2, 2023
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
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ 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).

## [3.5.14] - 2023-08-21
## [3.5.15] - 2023-08-28

### Fixed
* Incorrect Contributor name
* Incorrect change log date

## [3.5.14] - 2023-08-28

### Fixed
* Check `get_current_screen()` exists #973
Expand Down Expand Up @@ -456,6 +462,7 @@ Props to the many people who helped make this release possible: [catchmyfame](ht
**1.1.0 (Apr. 14, 2009)**
* Initial beta release.

[3.5.15]: https://github.com/automattic/co-authors-plus/compare/3.5.14...3.5.15
[3.5.14]: https://github.com/automattic/co-authors-plus/compare/3.5.13...3.5.14
[3.5.13]: https://github.com/automattic/co-authors-plus/compare/3.5.12...3.5.13
[3.5.12]: https://github.com/automattic/co-authors-plus/compare/3.5.11...3.5.12
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Co-Authors Plus

* Contributors: batmoo, danielbachhuber, automattic, GaryJones
* Contributors: batmoo, danielbachhuber, automattic, GaryJ
* Tags: authors, users, multiple authors, co-authors, multi-author, publishing
* Requires at least: 4.1
* Tested up to: 6.3
* Stable tag: 3.5.14
* Stable tag: 3.5.15
* Requires PHP: 5.6
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand Down
6 changes: 3 additions & 3 deletions co-authors-plus.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: Co-Authors Plus
* Plugin URI: https://wordpress.org/plugins/co-authors-plus/
* Description: Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter.
* Version: 3.5.14
* Version: 3.5.15
* Requires at least: 4.1
* Requires PHP: 5.6
* Author: Mohammad Jangda, Daniel Bachhuber, Automattic
Expand All @@ -21,7 +21,7 @@
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
*/

define( 'COAUTHORS_PLUS_VERSION', '3.5.14' );
define( 'COAUTHORS_PLUS_VERSION', '3.5.15' );

require_once dirname( __FILE__ ) . '/template-tags.php';
require_once dirname( __FILE__ ) . '/deprecated.php';
Expand Down Expand Up @@ -1270,7 +1270,7 @@ public function ajax_suggest() {
if ( $author instanceof WP_User ) {
$user_type = 'wp-user';
}

printf(
"%s ∣ %s ∣ %s ∣ %s ∣ %s ∣ %s \n",
esc_html( $author->ID ),
Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
=== Co-Authors Plus ===
Contributors: batmoo, danielbachhuber, automattic, GaryJones
Contributors: batmoo, danielbachhuber, automattic, GaryJ
Tags: authors, users, multiple authors, co-authors, multi-author, publishing
Requires at least: 4.1
Tested up to: 6.3
Stable tag: 3.5.14
Stable tag: 3.5.15
Requires PHP: 5.6
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand Down