diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c0c7950..e000033 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,7 +4,6 @@ on: push: tags: - "v*" - workflow_dispatch: jobs: tag: @@ -17,11 +16,7 @@ jobs: composer install --no-dev --no-interaction --no-progress --optimize-autoloader - name: WordPress Plugin Deploy uses: 10up/action-wordpress-plugin-deploy@stable - id: deploy - with: - dry-run: true - generate-zip: true env: SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} SVN_USERNAME: ${{ secrets.SVN_USERNAME }} - SLUG: fewer-tags # optional, remove if GitHub repo name matches SVN slug, including capitalization + SLUG: fewer-tags diff --git a/.wordpress.org/blueprints/blueprint.json b/.wordpress-org/blueprints/blueprint.json similarity index 100% rename from .wordpress.org/blueprints/blueprint.json rename to .wordpress-org/blueprints/blueprint.json diff --git a/.wordpress.org/screenshot-1.png b/.wordpress-org/screenshot-1.png similarity index 100% rename from .wordpress.org/screenshot-1.png rename to .wordpress-org/screenshot-1.png diff --git a/.wordpress.org/screenshot-2.png b/.wordpress-org/screenshot-2.png similarity index 100% rename from .wordpress.org/screenshot-2.png rename to .wordpress-org/screenshot-2.png diff --git a/fewer-tags.php b/fewer-tags.php index a6de3b8..9022467 100644 --- a/fewer-tags.php +++ b/fewer-tags.php @@ -3,14 +3,14 @@ * Plugin that redirects tag pages to the home page if they contain fewer than a specified number of posts. * * @package FewerTags - * @version 1.3.2 + * @version 1.3.3 * * Plugin Name: Fewer Tags * Plugin URI: https://joost.blog/plugins/fewer-tags/ * Description: Redirects tag pages to the home page if they contain fewer than a specified number of posts, defaults to 10. Change under Settings > Reading. Results in fewer useFewer tags, which is good for SEO. * Requires at least: 6.2 * Requires PHP: 7.4 - * Version: 1.3.2 + * Version: 1.3.3 * Author: Joost de Valk * Author URI: https://joost.blog * License: GPL-3.0+ diff --git a/readme.txt b/readme.txt index d424dd2..8232228 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: tag, tags, seo Requires at least: 6.2 Tested up to: 6.4 Requires PHP: 7.4 -Stable tag: 1.3.2 +Stable tag: 1.3.3 License: GPL3+ License URI: https://www.gnu.org/licenses/gpl-3.0.en.html @@ -46,6 +46,10 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro == Changelog == += 1.3.3 = + +* Minor stability fixes. + = 1.3.2 = * Fix fatal error caused by not loading the autoload file.