Skip to content

Commit

Permalink
Merge pull request #103 from Automattic/release/0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GaryJones authored Aug 12, 2024
2 parents bcf16fa + 92b9581 commit 9cedd63
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 11 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,31 @@ 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).

## [0.10.0] - 2024-08-09

This release has PHP 7.4 and WordPress 5.9 as the minimum supported versions.

### Fixed

* Fix typos by @szepeviktor in https://github.com/Automattic/zoninator/pull/88
* UI: Fix typo and clarify Add Zone description by @GaryJones in https://github.com/Automattic/zoninator/pull/93

### Changed

* Increase min WP and PHP versions by @GaryJones in https://github.com/Automattic/zoninator/pull/98
* Add WP_Error check by @aosmichenko in https://github.com/Automattic/zoninator/pull/78
* Send empty set when search yields no results by @dlh01 in https://github.com/Automattic/zoninator/pull/82
* Increase autocomplete timeout by @pkevan in https://github.com/Automattic/zoninator/pull/69

### Maintenance

* Fix bytes by @szepeviktor in https://github.com/Automattic/zoninator/pull/90
* CI: Use valid runs-on value, and fix some issues by @GaryJones in https://github.com/Automattic/zoninator/pull/95
* CI: Update action versions by @GaryJones in https://github.com/Automattic/zoninator/pull/96
* Docs: Various improvements by @GaryJones in https://github.com/Automattic/zoninator/pull/99
* NPM: Add version-bump-prompt by @GaryJones in https://github.com/Automattic/zoninator/pull/100
* Add auto-deploy for WordPress.org plugin repo by @GaryJones in https://github.com/Automattic/zoninator/pull/101

## [0.9] - 2023-10-20

* Correctly position cloned sortable element on mobile.
Expand Down Expand Up @@ -72,6 +97,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* Initial Release!

[0.10.0]: https://github.com/automattic/zoninator/compare/0.9..0.10.0
[0.9]: https://github.com/automattic/zoninator/compare/0.8..0.9
[0.8]: https://github.com/automattic/zoninator/compare/0.7..0.8

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Zone Manager (Zoninator)

Stable tag: 0.9.0
Stable tag: 0.10.0
Requires at least: 5.9
Tested up to: 6.6
Requires PHP: 7.4
Expand Down
14 changes: 7 additions & 7 deletions bin/install-wp-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ WP_TESTS_DIR=${WP_TESTS_DIR-$TMPDIR/wordpress-tests-lib}
WP_CORE_DIR=${WP_CORE_DIR-$TMPDIR/wordpress}

download() {
if [ `which curl` ]; then
curl -s "$1" > "$2";
elif [ `which wget` ]; then
wget -nv -O "$2" "$1"
fi
if [ `which curl` ]; then
curl -s "$1" > "$2";
elif [ `which wget` ]; then
wget -nv -O "$2" "$1"
fi
}

if [[ $WP_VERSION =~ ^[0-9]+\.[0-9]+\-(beta|RC)[0-9]+$ ]]; then
Expand Down Expand Up @@ -88,11 +88,11 @@ install_wp() {
else
local ARCHIVE_NAME="wordpress-$WP_VERSION"
fi
download https://wordpress.org/${ARCHIVE_NAME}.tar.gz $TMPDIR/wordpress.tar.gz
download https://wordpress.org/${ARCHIVE_NAME}.tar.gz $TMPDIR/wordpress.tar.gz
tar --strip-components=1 -zxmf $TMPDIR/wordpress.tar.gz -C $WP_CORE_DIR
fi

download https://raw.github.com/markoheijnen/wp-mysqli/master/db.php $WP_CORE_DIR/wp-content/db.php
download https://raw.githubusercontent.com/markoheijnen/wp-mysqli/master/db.php $WP_CORE_DIR/wp-content/db.php
}

install_test_suite() {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zoninator",
"version": "0.9.0",
"version": "0.10.0",
"description": "Curation made easy! Create \"zones\" then add and order your content!",
"license": "GPL-2.0-or-later",
"private": true,
Expand Down
4 changes: 2 additions & 2 deletions zoninator.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Zone Manager (Zoninator)
Description: Curation made easy! Create "zones" then add and order your content!
Author: Mohammad Jangda, Automattic
Version: 0.9
Version: 0.10.0
Author URI: http://vip.wordpress.com
Text Domain: zoninator
Domain Path: /language/
Expand Down Expand Up @@ -32,7 +32,7 @@

if( ! class_exists( 'Zoninator' ) ) :

define( 'ZONINATOR_VERSION', '0.9.0' );
define( 'ZONINATOR_VERSION', '0.10.0' );
define( 'ZONINATOR_PATH', dirname( __FILE__ ) );
define( 'ZONINATOR_URL', trailingslashit( plugins_url( '', __FILE__ ) ) );

Expand Down

0 comments on commit 9cedd63

Please sign in to comment.