Skip to content

Commit

Permalink
v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
t-hamano committed Oct 16, 2022
1 parent c61da5b commit 0c02a0a
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 8 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run-test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ name: Test and Deploy

on:
push:
branches-ignore:
- '**'
tags:
- '*'
- '*'

jobs:
test:
Expand All @@ -12,7 +14,7 @@ jobs:
matrix:
php-versions: [ '7.3', '7.4', '8.0' ]
wp-versions: [ 'WordPress#5.9', 'WordPress#6.0' ]
name: PHP ${{ matrix.php-versions }} / WP ${{ matrix.wp-versions }} Test
name: PHP ${{ matrix.php-versions }} / ${{ matrix.wp-versions }} Test

steps:
- uses: actions/checkout@v3
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Test

on: push
on:
push:
tags-ignore:
- '**'
branches:
- '*'

jobs:
test:
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Flexible Spacer Block

[![Deploy to WordPress.org](https://github.com/t-hamano/flexible-spacer-block/actions/workflows/wp-plugin-deploy.yml/badge.svg)](https://github.com/t-hamano/flexible-spacer-block/actions/workflows/wp-plugin-deploy.yml)
[![Test](https://github.com/t-hamano/flexible-spacer-block/actions/workflows/run-test.yml/badge.svg)](https://github.com/t-hamano/flexible-spacer-block/actions/workflows/run-test.yml)
[![Test and Deploy](https://github.com/t-hamano/flexible-spacer-block/actions/workflows/run-test-and-deploy.yml/badge.svg)](https://github.com/t-hamano/flexible-spacer-block/actions/workflows/run-test-and-deploy.yml)

![Header](https://raw.githubusercontent.com/t-hamano/flexible-spacer-block/main/.wordpress-org/banner-1544x500.png)

Expand Down
2 changes: 1 addition & 1 deletion flexible-spacer-block.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Flexible Spacer Block
* Description: Add white space between blocks and customize its height for each device.
* Version: 1.3.0
* Version: 1.4.0
* Author: Aki Hamano
* Author URI: https://github.com/t-hamano
* License: GPL2 or later
Expand Down
12 changes: 9 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
Contributors: wildworks
Tags: gutenberg, block, spacer, responsive
Donate link: https://www.paypal.me/thamanoJP
Requires at least: 5.6
Tested up to: 6.0
Stable tag: 1.3.0
Requires at least: 5.9
Tested up to: 6.1
Stable tag: 1.4.0
Requires PHP: 7.3
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -48,6 +48,12 @@ Source: https://pxhere.com/ja/photo/245

== Changelog ==

= 1.4.0 =
* Tested to WordPress 6.1
* Drop support for WordPress 5.6 through 5.8
* Fix: Not converting correctly from core spacer block
* Enhancement: Polish style in the setting page

= 1.3.0 =
* Tested to WordPress 6.0
* Update: Minify inline styles
Expand Down

0 comments on commit 0c02a0a

Please sign in to comment.