bump version to 1.1.0-alpha and update dev-dependencies

This commit is contained in:
Stefan Kalscheuer 2019-11-23 17:57:32 +01:00
parent 9ddcc41c6b
commit fc4783d07a
4 changed files with 10 additions and 10 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "stklcode/stklcode-liveticker", "name": "stklcode/stklcode-liveticker",
"version": "1.0.0", "version": "1.1.0-alpha",
"description": "A simple Liveticker for Wordpress.", "description": "A simple Liveticker for Wordpress.",
"keywords": [ "keywords": [
"wordpress", "wordpress",
@ -27,9 +27,9 @@
"phpunit/php-code-coverage": "*", "phpunit/php-code-coverage": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5", "dealerdirect/phpcodesniffer-composer-installer": "^0.5",
"slowprog/composer-copy-file": "~0.3", "slowprog/composer-copy-file": "~0.3",
"squizlabs/php_codesniffer": "^3.4", "squizlabs/php_codesniffer": "^3.5",
"phpcompatibility/php-compatibility": "^9.2", "phpcompatibility/php-compatibility": "^9.3",
"wp-coding-standards/wpcs": "^2.1", "wp-coding-standards/wpcs": "^2.2",
"patchwork/jsqueeze": "^2.0", "patchwork/jsqueeze": "^2.0",
"natxet/cssmin": "^3.0", "natxet/cssmin": "^3.0",
"matthiasmullie/minify": "^1.3" "matthiasmullie/minify": "^1.3"

View File

@ -68,7 +68,7 @@ class SCLiveticker_Widget extends WP_Widget {
echo $before_title . esc_html( $title ) . $after_title; echo $before_title . esc_html( $title ) . $after_title;
} }
echo '<ul class="sclt-widget'; echo '<div class="wp-widget-scliveticker-ticker';
if ( '1' === $ajax ) { if ( '1' === $ajax ) {
echo ' sclt-ajax" ' echo ' sclt-ajax" '
. 'data-sclt-ticker="' . esc_attr( $category ) . '" ' . 'data-sclt-ticker="' . esc_attr( $category ) . '" '

View File

@ -21,7 +21,7 @@ class SCLiveticker {
* *
* @var string OPTIONS * @var string OPTIONS
*/ */
const VERSION = '1.0.0'; const VERSION = '1.1.0-alpha';
/** /**
* Options tag. * Options tag.

View File

@ -1,13 +1,13 @@
{ {
"name": "stklcode-liveticker", "name": "stklcode-liveticker",
"version": "1.0.0", "version": "1.1.0-alpha",
"description": "A simple Liveticker for Wordpress.", "description": "A simple Liveticker for Wordpress.",
"author": "Stefan Kalscheuer", "author": "Stefan Kalscheuer",
"license": "GPL-2.0+", "license": "GPL-2.0+",
"devDependencies": { "devDependencies": {
"eslint": "^6", "eslint": "^6",
"@wordpress/eslint-plugin": "^2.4", "@wordpress/eslint-plugin": "^3",
"stylelint": "^10.1", "stylelint": "^12",
"stylelint-config-wordpress": "^14.0" "stylelint-config-wordpress": "^15"
} }
} }