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 0.10.1 #109

Merged
merged 2 commits into from
Aug 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
1 change: 1 addition & 0 deletions .distignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# The deploy Action will use rsync + .distignore if the .distignore exists,
# so it doesn't care what may or may not be ignored via .gitignore.

/.git/
/.github/
/bin/
/tests/
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.1] - 2024-08-15

### Fixed

* Deploy: Don't include the .git/ directory by @GaryJones in https://github.com/Automattic/zoninator/pull/106

## [0.10.0] - 2024-08-09

This release has PHP 7.4 and WordPress 5.9 as the minimum supported versions.
Expand Down Expand Up @@ -97,6 +103,7 @@ This release has PHP 7.4 and WordPress 5.9 as the minimum supported versions.

* Initial Release!

[0.10.1]: https://github.com/automattic/zoninator/compare/0.10.0..0.10.1
[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
Expand Down
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.10.0
Stable tag: 0.10.1
Requires at least: 5.9
Tested up to: 6.6
Requires PHP: 7.4
Expand Down
2 changes: 1 addition & 1 deletion 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": "zoninator",
"version": "0.10.0",
"version": "0.10.1",
"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.10.0
Version: 0.10.1
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.10.0' );
define( 'ZONINATOR_VERSION', '0.10.1' );
define( 'ZONINATOR_PATH', dirname( __FILE__ ) );
define( 'ZONINATOR_URL', trailingslashit( plugins_url( '', __FILE__ ) ) );

Expand Down
Loading