Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
janwidmer-work committed Jun 11, 2021
1 parent 1a85076 commit 131ed39
Show file tree
Hide file tree
Showing 7 changed files with 3,430 additions and 4,602 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ lazy-blocks custom control to offer a dynamic select containing wordpress posts,

- `git tag v1.0.0` to create a tag for the version to release
- `git push origin v1.0.0` to push the tag to trigger the git action
- If it's a bigger Release, manually create a release on https://github.com/janwidmer/lzb-select-dynamic/releases
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"require-dev": {
"composer/composer": "2.0.7",
"wp-coding-standards/wpcs": "^2.2.1",
"phpcompatibility/phpcompatibility-wp": "^2.1.0",
"phpcompatibility/phpcompatibility-wp": "^2.1.1",
"wp-cli/i18n-command": "^2.2.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0"
},
Expand Down
8,003 changes: 3,415 additions & 4,588 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lzb-select-dynamic",
"title": "Lazy Blocks: Select Dynamic Control",
"version": "2.1.0",
"version": "2.1.1",
"description": "lazy-blocks custom control to offer a dynamic select containing wordpress posts or categories",
"license": "GPL-2.0",
"author": "Jan Widmer <https://github.com/janwidmer>",
Expand All @@ -15,14 +15,14 @@
"postinstall": "composer install"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/cli": "7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/core": "^7.14.5",
"@babel/node": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "7.10.4",
"@babel/register": "^7.11.5",
"@babel/register": "^7.14.5",
"babel-loader": "8.1.0",
"classnames": "^2.2.6",
"eslint": "7.11.0",
Expand Down
4 changes: 2 additions & 2 deletions src/languages/lzb-select-dynamic.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the GPLv2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Lzb Select Dynamic 2.1.0\n"
"Project-Id-Version: Lzb Select Dynamic @@plugin_version\n"
"Report-Msgid-Bugs-To: https://github.com/janwidmer/lzb-select-dynamic/issues\n"
"Last-Translator: janwidmer\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-05-31T09:33:02+00:00\n"
"POT-Creation-Date: 2021-06-11T04:45:30+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: @@text_domain\n"
Expand Down
6 changes: 3 additions & 3 deletions src/lzb-select-dynamic.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
* Plugin Name: Lzb Select Dynamic
* Description: lazy-blocks custom control to offer a dynamic select containing wordpress posts, pages or categories
* Plugin URI: https://github.com/janwidmer/lzb-select-dynamic
* Version: 2.1.0
* Version: @@plugin_version
* Author: Jan Widmer
* Author URI: https://github.com/janwidmer
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: lzb-select-dynamic
* Text Domain: @@text_domain
*
* @package lzb-select-dynamic
*/
Expand Down Expand Up @@ -60,7 +60,7 @@ public static function plugins_loaded() {
self::$plugin_url = plugin_dir_url( __FILE__ );

// Translations.
load_plugin_textdomain( 'lzb-select-dynamic', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
load_plugin_textdomain( '@@text_domain', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );

// Include control.
include_once self::$plugin_path . '/controls/select-dynamic.php';
Expand Down
2 changes: 1 addition & 1 deletion src/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Requires at least: 5.5
* Tested up to: 5.7.2
* Requires PHP: 5.5.9
* Stable tag: 2.1.0
* Stable tag: @@plugin_version
* License: GPLv2 or later
* License URI: <http://www.gnu.org/licenses/gpl-2.0.html>

Expand Down

0 comments on commit 131ed39

Please sign in to comment.