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

Release 2.6.3 #181

Merged
merged 4 commits into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file, per [the Ke

## [Unreleased] - TBD

## [2.6.3] - 2023-11-10
dkotter marked this conversation as resolved.
Show resolved Hide resolved
### Fixed
- Deployment issue with version 2.6.2 (props [@Sidsector9](https://github.com/Sidsector9), [@dkotter](https://github.com/dkotter) via [#181](https://github.com/10up/simple-page-ordering/pull/181))

## [2.6.2] - 2023-11-10
dkotter marked this conversation as resolved.
Show resolved Hide resolved
### Changed
- Update the `wp-compat-validation-tool` composer package to version `0.3.1` which properly removes the `.git` directory (props [@Sidsector9](https://github.com/Sidsector9), [@dkotter](https://github.com/dkotter) via [#180](https://github.com/10up/simple-page-ordering/pull/180)).
Expand Down Expand Up @@ -290,6 +294,7 @@ All notable changes to this project will be documented in this file, per [the Ke
- Updated version requirements.

[Unreleased]: https://github.com/10up/simple-page-ordering/compare/trunk...develop
[2.6.3]: https://github.com/10up/simple-page-ordering/compare/2.6.2...2.6.3
[2.6.2]: https://github.com/10up/simple-page-ordering/compare/2.6.1...2.6.2
[2.6.1]: https://github.com/10up/simple-page-ordering/compare/2.6.0...2.6.1
[2.6.0]: https://github.com/10up/simple-page-ordering/compare/2.5.1...2.6.0
Expand Down
2 changes: 1 addition & 1 deletion class-simple-page-ordering.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use WP_Query;

// Useful global constants.
define( 'SIMPLE_PAGE_ORDERING_VERSION', '2.6.2' );
define( 'SIMPLE_PAGE_ORDERING_VERSION', '2.6.3' );

if ( ! class_exists( 'Simple_Page_Ordering' ) ) :

Expand Down
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,7 +1,7 @@
{
"name": "simple-page-ordering",
"description": "Order your pages and other hierarchical post types with simple drag and drop right from the standard page list.",
"version": "2.6.2",
"version": "2.6.3",
"author": "10up <[email protected]> (https://10up.com)",
"license": "GPL-2.0-or-later",
"devDependencies": {
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: order, re-order, ordering, pages, page, manage, menu_order, h
Requires at least: 5.7
Requires PHP: 7.4
Tested up to: 6.4
Stable tag: 2.6.2
Stable tag: 2.6.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -110,6 +110,9 @@ Yes. The plugin registers the REST endpoint `simple-page-ordering/v1/page_orderi

== Changelog ==

= 2.6.3 - 2023-11-10 =
dkotter marked this conversation as resolved.
Show resolved Hide resolved
* **Fix:** Deployment issue with version 2.6.2 (props [@Sidsector9](https://github.com/Sidsector9), [@dkotter](https://github.com/dkotter) via [#181](https://github.com/10up/simple-page-ordering/pull/181))

= 2.6.2 - 2023-11-10 =
dkotter marked this conversation as resolved.
Show resolved Hide resolved
* **Changed:** Update the `wp-compat-validation-tool` composer package to version `0.3.1` which properly removes the `.git` directory (props [@Sidsector9](https://github.com/Sidsector9), [@dkotter](https://github.com/dkotter) via [#180](https://github.com/10up/simple-page-ordering/pull/180)).

Expand Down
2 changes: 1 addition & 1 deletion simple-page-ordering.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Simple Page Ordering
* Plugin URI: http://10up.com/plugins/simple-page-ordering-wordpress/
* Description: Order your pages and hierarchical post types using drag and drop on the built in page list. For further instructions, open the "Help" tab on the Pages screen.
* Version: 2.6.1
* Version: 2.6.3
* Requires at least: 5.7
* Requires PHP: 7.4
* Author: 10up
Expand Down
Loading