Skip to content

Fix versions, bump to 0.3.11 #40

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

Merged
merged 1 commit into from
Jun 15, 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
4 changes: 2 additions & 2 deletions archived-post-status.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* @wordpress-plugin
* Plugin Name: Archived Post Status
* Description: Allows posts and pages to be archived so you can unpublish content without having to trash it.
* Version: 0.3.9.1
* Version: 0.3.11
* Author: Joshua David Nelson
* Author URI: https://joshuadnelson.com
* Text Domain: archived-post-status
Expand All @@ -35,7 +35,7 @@
/**
* Define plugin constants.
*/
define( 'ARCHIVED_POST_STATUS_VERSION', '0.3.9.1' );
define( 'ARCHIVED_POST_STATUS_VERSION', '0.3.11' );
define( 'ARCHIVED_POST_STATUS_PLUGIN', plugin_basename( __FILE__ ) );
define( 'ARCHIVED_POST_STATUS_DIR', __DIR__ );
define( 'ARCHIVED_POST_STATUS_URL', plugins_url( '/', __FILE__ ) );
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Archived Post Status Changelog
---

## 0.3.11 - June 15, 2024
- Fix release and versioning issues that shipped with 0.3.10

## 0.3.10 - June 15, 2024
- Test & update support for WP 6.5.4
- Increase minimum supported php to 8.1, as 8.0 is end of life.
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "joshuadavidnelson/archived-post-status",
"version": "0.3.11",
"type": "wordpress-plugin",
"description": "A WordPress plugin that allows posts and pages to be archived so you can unpublish content without having to trash it.",
"homepage": "https://archivedpoststat.us/",
Expand Down
187 changes: 1 addition & 186 deletions composer.lock

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

4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "archived-post-status",
"version": "0.3.10",
"version": "0.3.11",
"description": "A WordPress plugin that allows posts and pages to be archived so you can unpublish content without having to trash it.",
"author": "Joshua David Nelson",
"license": "GPL-2.0-or-later",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Allows posts and pages to be archived so you can unpublish content without havin
**Tested up to PHP version:** 8.3
**Minimum WP Version supported:** 5.9
**Tested up to WP version:** 6.5.4
**Stable tag:** 0.3.10
**Stable tag:** 0.3.11
**License:** [GPL-2.0](https://www.gnu.org/licenses/gpl-2.0.html)

## Description
Expand Down
8 changes: 7 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: archive, archived, post status, archive post, admin, status,
Requires at least: 5.9
Requires PHP: 8.1
Tested up to: 6.5.4
Stable tag: 0.3.10
Stable tag: 0.3.11
License: GPL-2.0
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -173,6 +173,9 @@ Please reach out on the [Github Issues](https://github.com/joshuadavidnelson/arc

== Changelog ==

= 0.3.11 =
- Fix release and versioning issues that shipped with 0.3.10

= 0.3.10 =
- Test & update support for WP 6.5.4
- Increase minimum supported php to 8.1, as 8.0 is end of life.
Expand Down Expand Up @@ -271,6 +274,9 @@ Props [fjarrett](https://github.com/fjarrett)

== Upgrade Notice ==

= 0.3.11 =
- Fix release and versioning issues that shipped with 0.3.10

= 0.3.10 =
- Test & update support for WP 6.5.4
- Increase minimum supported php to 8.1, as 8.0 is end of life.
Expand Down
Loading