Skip to content

Commit

Permalink
🔖 Prepare version 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MatzeKitt committed Jan 29, 2024
1 parent 46ff089 commit ae795e4
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 1.3.0
* Added: Support block settings like font size, line height and dimensions
* Added: By selecting an invalid field, the error message will now be announced to screen readers
* Fixed: Improved resetting a form after successful submit
* Notice: This version requires at least WordPress 6.3
* For developers: Each `<form>` element has now its validator object attached to it

## 1.2.0
* Added: Form creation wizard for even easier form creation
* Added: Ability to set a custom subject for each form
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ We usually only support the latest major version.

| Version | Supported |
| ------- | ------------------ |
| 1.2.x | :white_check_mark: |
| < 1.2 | :x: |
| 1.3.x | :white_check_mark: |
| < 1.3 | :x: |

## Reporting a Vulnerability

Expand Down
4 changes: 2 additions & 2 deletions form-block.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Plugin Name: Form Block
Plugin URI: https://formblock.pro/en/
Description: An extensive yet user-friendly form block.
Version: 1.2.0
Version: 1.3.0
Author: Epiphyt
Author URI: https://epiph.yt
License: GPL2
Expand All @@ -43,7 +43,7 @@
// exit if ABSPATH is not defined
defined( 'ABSPATH' ) || exit;

define( 'FORM_BLOCK_VERSION', '1.2.0' );
define( 'FORM_BLOCK_VERSION', '1.3.0' );

if ( ! defined( 'EPI_FORM_BLOCK_BASE' ) ) {
define( 'EPI_FORM_BLOCK_BASE', WP_PLUGIN_DIR . '/form-block/' );
Expand Down
8 changes: 8 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ There is also a Pro version of Form Block available. It offers additional featur
* Custom form action
* Upload via drag and drop
* Global defined consent checkbox
* Field dependencies

You can find more information at [https://formblock.pro/en/](https://formblock.pro/en/).

Expand Down Expand Up @@ -90,6 +91,13 @@ We are [Epiphyt](https://epiph.yt/), your friendly neighborhood WordPress plugin

== Changelog ==

= 1.3.0 =
* Added: Support block settings like font size, line height and dimensions
* Added: By selecting an invalid field, the error message will now be announced to screen readers
* Fixed: Improved resetting a form after successful submit
* Notice: This version requires at least WordPress 6.3
* For developers: Each `<form>` element has now its validator object attached to it

= 1.2.0 =
* Added: Form creation wizard for even easier form creation
* Added: Ability to set a custom subject for each form
Expand Down

0 comments on commit ae795e4

Please sign in to comment.