Skip to content

Commit a425d27

Browse files
committed
🔖 Bumped version to 0.1.1
1 parent 5318f11 commit a425d27

11 files changed

+39
-12
lines changed

CHANGELOG.rst

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
==============
2+
Change history
3+
==============
4+
5+
0.1.1
6+
=====
7+
8+
*January 20, 2023*
9+
10+
* Fixed generic function/class names by prefixing them.
11+
12+
13+
0.1.0
14+
=====
15+
16+
*January 19, 2023*
17+
18+
* Fixed the use of PHP short tags by replacing them.
19+
* Fixed possible issues where values were not escapred explicitly.
20+
21+
22+
0.0.1
23+
=====
24+
25+
*January 13, 2023*
26+
27+
* Initial pre-release

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Open Forms plugin (for Wordpress)
44
=================================
55

6-
:Version: 0.1.0
6+
:Version: 0.1.1
77
:Source: https://github.com/open-formulieren/open-forms-plugin-wordpress
88
:Keywords: Open Forms, plugin, Wordpress
99

build/block.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 2,
44
"name": "openforms/form",
5-
"version": "0.1.0",
5+
"version": "0.1.1",
66
"title": "Open Forms",
77
"category": "embed",
88
"icon": "forms",

build/index.asset.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?php return array('dependencies' => array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n'), 'version' => '4135b73f0318fd2b346a');
1+
<?php return array('dependencies' => array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n'), 'version' => '3f6bd1b9020ec27eddf6');

build/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

languages/openforms.pot

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the GPLv2 or later.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Open Forms 0.1.0\n"
5+
"Project-Id-Version: Open Forms 0.1.1\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/openforms\n"
77
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
88
"Language-Team: LANGUAGE <LL@li.org>\n"

openforms.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Easily integrate Open Forms in your Wordpress website.
66
* Requires at least: 6.1
77
* Requires PHP: 7.0
8-
* Version: 0.1.0
8+
* Version: 0.1.1
99
* Author: Maykin
1010
* License: GPLv2 or later
1111
* License URI: https://github.com/open-formulieren/open-forms-plugin-wordpress/LICENSE

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openforms",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Easily integrate Open Forms in your Wordpress website.",
55
"author": "Maykin",
66
"license": "GPLv2",

readme.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Contributors: Maykin
33
Tags: openforms, block, commonground
44
Tested up to: 6.1
5-
Stable tag: 0.1.0
5+
Stable tag: 0.1.1
66
License: GPLv2 or later
77
License URI: https://github.com/open-formulieren/open-forms-plugin-wordpress/LICENSE
88

@@ -85,6 +85,6 @@ properly configured.
8585

8686
== Changelog ==
8787

88-
= 0.1.0 =
88+
= 0.1.1 =
8989

9090
* Initial release

src/block.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 2,
44
"name": "openforms/form",
5-
"version": "0.1.0",
5+
"version": "0.1.1",
66
"title": "Open Forms",
77
"category": "embed",
88
"icon": "forms",

0 commit comments

Comments
 (0)