Skip to content

Commit

Permalink
version bump to fix versions in release
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidnelson committed Jan 20, 2024
1 parent 56415ba commit 66198e8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
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
* Version: 0.3.9.1
* 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.8' );
define( 'ARCHIVED_POST_STATUS_VERSION', '0.3.9.1' );
define( 'ARCHIVED_POST_STATUS_PLUGIN', plugin_basename( __FILE__ ) );
define( 'ARCHIVED_POST_STATUS_DIR', __DIR__ );
define( 'ARCHIVED_POST_STATUS_URL', plugins_url( '/', __FILE__ ) );
Expand Down
5 changes: 4 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Archived Post Status Changelog
---

## 0.3.9 -
## 0.3.9.1 - January 19, 2024
- Fixing version numbers in files, missing from 0.3.9 release.

## 0.3.9 - January 19, 2024
- Fix deprecated php warning on `filter_input`, using native WP functions for escaping & getting query var. Fixes another issue, where archived posts couldn't be trashed (Closes #35)
- Add `aps_archived_label_string` filter to modify the "Archived" string used for the label.
- Add `aps_title_separator` and `aps_title_label` to filter the post title prefix and separator, defaults to 'Archived' with a `:` separator. Disable the title label entirely by using `add_filter( 'aps_title_prefix', '__return_false' );` in your `functions.php` file or custom plugin file. Closes #21
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Allows posts and pages to be archived so you can unpublish content without havin
**Minimum PHP version supported:** 7.4
**Minimum WP Version supported:** 5.3
**Tested up to:** 6.4.2
**Stable tag:** 0.3.9
**Stable tag:** 0.3.9.1
**License:** [GPL-2.0](https://www.gnu.org/licenses/gpl-2.0.html)

## Description
Expand Down
7 changes: 5 additions & 2 deletions 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.3
Requires PHP: 7.4
Tested up to: 6.4.2
Stable tag: 0.3.9
Stable tag: 0.3.9.1
License: GPL-2.0
License URI: https://www.gnu.org/licenses/gpl-2.0.html

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

== Changelog ==

= 0.3.9 =
= 0.3.9.1 - January 19, 2024 =
- Fixing version numbers in files, missing from 0.3.9 release.

= 0.3.9 - January 19, 2024 =
- Fix deprecated php warning on `filter_input`, using native WP functions for escaping & getting query var. Fixes another issue, where archived posts couldn't be trashed (Closes #35)
- Add `aps_archived_label_string` filter to modify the "Archived" string used for the label.
- Add `aps_title_separator` and `aps_title_label` to filter the post title prefix and separator, defaults to 'Archived' with a `:` separator. Disable the title label entirely by using `add_filter( 'aps_title_prefix', '__return_false' );` in your `functions.php` file or custom plugin file. Closes #21
Expand Down

0 comments on commit 66198e8

Please sign in to comment.