prepare release of v1.1.1
This commit is contained in:
parent
3c52c9eba9
commit
5ebd3c55d3
27
.drone.yml
27
.drone.yml
@ -3,15 +3,26 @@ name: default
|
|||||||
type: docker
|
type: docker
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: pre-build
|
- name: composer-install
|
||||||
image: composer
|
image: composer:2
|
||||||
commands:
|
commands:
|
||||||
- composer install
|
- composer install
|
||||||
- name: test
|
- name: lint-php
|
||||||
image: composer
|
image: composer:2
|
||||||
commands:
|
|
||||||
- composer test
|
|
||||||
- name: lint
|
|
||||||
image: composer
|
|
||||||
commands:
|
commands:
|
||||||
- composer lint-php
|
- composer lint-php
|
||||||
|
depends_on:
|
||||||
|
- composer-install
|
||||||
|
- name: node-install
|
||||||
|
image: node:14
|
||||||
|
commands:
|
||||||
|
- npm ci
|
||||||
|
- name: lint-assets
|
||||||
|
image: node:14
|
||||||
|
commands:
|
||||||
|
- npx eslint scripts/block.js
|
||||||
|
- npx eslint scripts/liveticker.js
|
||||||
|
- npx stylelint styles/block.css
|
||||||
|
- npx stylelint styles/liveticker.css
|
||||||
|
depends_on:
|
||||||
|
- node-install
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"extends": "stylelint-config-wordpress"
|
"extends": "@wordpress/stylelint-config"
|
||||||
}
|
}
|
||||||
|
@ -18,8 +18,9 @@ before_script:
|
|||||||
- npm install
|
- npm install
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- composer test
|
- composer lint-php
|
||||||
- composer lint-all
|
- composer lint-js
|
||||||
|
- composer lint-css
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
slack:
|
slack:
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
* Requires at least: 4.0
|
* Requires at least: 4.0
|
||||||
* Tested up to: 5.7
|
* Tested up to: 5.7
|
||||||
* Requires PHP: 5.6
|
* Requires PHP: 5.6
|
||||||
* Stable tag: 1.1.0
|
* Stable tag: 1.1.1
|
||||||
* License: GPLv2 or later
|
* License: GPLv2 or later
|
||||||
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||||
|
|
||||||
@ -80,7 +80,7 @@ caching time of 12 hours obviously makes no sense.
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
### unreleased
|
### 1.1.1 - 2021-03-20
|
||||||
|
|
||||||
* "Ticker" taxonomy name is now translatable
|
* "Ticker" taxonomy name is now translatable
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "stklcode/stklcode-liveticker",
|
"name": "stklcode/stklcode-liveticker",
|
||||||
"version": "1.1.0",
|
"version": "1.1.1",
|
||||||
"description": "A simple Liveticker for Wordpress.",
|
"description": "A simple Liveticker for Wordpress.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"wordpress",
|
"wordpress",
|
||||||
|
@ -26,7 +26,7 @@ class SCLiveticker {
|
|||||||
*
|
*
|
||||||
* @var string OPTIONS
|
* @var string OPTIONS
|
||||||
*/
|
*/
|
||||||
const VERSION = '1.1.0';
|
const VERSION = '1.1.1';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Options tag.
|
* Options tag.
|
||||||
|
2229
package-lock.json
generated
2229
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,13 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "stklcode-liveticker",
|
"name": "stklcode-liveticker",
|
||||||
"version": "1.1.0",
|
"version": "1.1.1",
|
||||||
"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": {
|
||||||
"@wordpress/eslint-plugin": "^7",
|
"@wordpress/eslint-plugin": "^7",
|
||||||
|
"@wordpress/stylelint-config": "^19",
|
||||||
"eslint": "^7",
|
"eslint": "^7",
|
||||||
"stylelint": "^13",
|
"stylelint": "^13"
|
||||||
"stylelint-config-wordpress": "^17"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
* @wordpress-plugin
|
* @wordpress-plugin
|
||||||
* Plugin Name: Liveticker (by stklcode)
|
* Plugin Name: Liveticker (by stklcode)
|
||||||
* Description: A simple Liveticker for WordPress.
|
* Description: A simple Liveticker for WordPress.
|
||||||
* Version: 1.1.0
|
* Version: 1.1.1
|
||||||
* Author: Stefan Kalscheuer
|
* Author: Stefan Kalscheuer
|
||||||
* Author URI: https://www.stklcode.de
|
* Author URI: https://www.stklcode.de
|
||||||
* Text Domain: stklcode-liveticker
|
* Text Domain: stklcode-liveticker
|
||||||
|
Loading…
x
Reference in New Issue
Block a user