diff --git a/.distignore b/.distignore index 19f14f4..eb83f6e 100644 --- a/.distignore +++ b/.distignore @@ -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/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ea24ee..221d165 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. @@ -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 diff --git a/README.md b/README.md index f1a200e..f9e6b6d 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/package-lock.json b/package-lock.json index a5bf77f..de1ab59 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "zoninator", - "version": "0.10.0", + "version": "0.10.1", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package.json b/package.json index 3752c6a..bf7d25a 100644 --- a/package.json +++ b/package.json @@ -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, diff --git a/zoninator.php b/zoninator.php index 22755b4..967b1cf 100644 --- a/zoninator.php +++ b/zoninator.php @@ -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/ @@ -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__ ) ) );