0.18
Some checks failed
Create Release / Create Release (push) Has been cancelled

This commit is contained in:
abuyoyo 2022-08-06 18:01:14 +03:00
commit 1cbb0a5aea
11 changed files with 49 additions and 30 deletions

View File

@ -1,5 +1,10 @@
# Notice Manager Changelog # Notice Manager Changelog
## 0.18
### Minor
- Version bump everywhere.
## 0.17 ## 0.17
### Removed ### Removed

View File

@ -2,7 +2,7 @@
"name": "abuyoyo/notice-manager", "name": "abuyoyo/notice-manager",
"description": "Manage notices on WordPress admin pages. Adds 'Notices' screen-meta-link.", "description": "Manage notices on WordPress admin pages. Adds 'Notices' screen-meta-link.",
"type": "wordpress-plugin", "type": "wordpress-plugin",
"version": "0.17", "version": "0.18",
"repositories": [ "repositories": [
{ {
"type": "vcs", "type": "vcs",
@ -11,7 +11,7 @@
], ],
"require":{ "require":{
"abuyoyo/screen-meta-links": "~0.11", "abuyoyo/screen-meta-links": "~0.11",
"abuyoyo/plugincore": "~0.22", "abuyoyo/plugincore": "~0.23",
"abuyoyo/adminmenupage": "~0.21" "abuyoyo/adminmenupage": "~0.21"
} }
} }

18
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "5d77ff6e04d24911491a5e639a4d1dd1", "content-hash": "c7eb351b97392f663e147702dbc845b9",
"packages": [ "packages": [
{ {
"name": "abuyoyo/adminmenupage", "name": "abuyoyo/adminmenupage",
@ -46,18 +46,22 @@
}, },
{ {
"name": "abuyoyo/plugincore", "name": "abuyoyo/plugincore",
"version": "0.22", "version": "0.23",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/abuyoyo/PluginCore.git", "url": "https://github.com/abuyoyo/PluginCore.git",
"reference": "736b38d82fc41c7102ec28f386f4df807a10ab05" "reference": "0a5809d6722a2abf0bdaf23f73bd3875b00fd2a4"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/abuyoyo/PluginCore/zipball/736b38d82fc41c7102ec28f386f4df807a10ab05", "url": "https://api.github.com/repos/abuyoyo/PluginCore/zipball/0a5809d6722a2abf0bdaf23f73bd3875b00fd2a4",
"reference": "736b38d82fc41c7102ec28f386f4df807a10ab05", "reference": "0a5809d6722a2abf0bdaf23f73bd3875b00fd2a4",
"shasum": "" "shasum": ""
}, },
"suggest": {
"abuyoyo/adminmenupage": "~0.20",
"yahnis-elsts/plugin-update-checker": "~4.12"
},
"type": "library", "type": "library",
"autoload": { "autoload": {
"psr-4": { "psr-4": {
@ -71,9 +75,9 @@
"description": "WordPress plugin core helper class", "description": "WordPress plugin core helper class",
"support": { "support": {
"issues": "https://github.com/abuyoyo/PluginCore/issues", "issues": "https://github.com/abuyoyo/PluginCore/issues",
"source": "https://github.com/abuyoyo/PluginCore/tree/0.22" "source": "https://github.com/abuyoyo/PluginCore/tree/0.23"
}, },
"time": "2022-08-05T00:00:00+00:00" "time": "2022-08-06T00:00:00+00:00"
}, },
{ {
"name": "abuyoyo/screen-meta-links", "name": "abuyoyo/screen-meta-links",

View File

@ -2,7 +2,7 @@
/** /**
* Plugin Name: Notice Manager * Plugin Name: Notice Manager
* Description: Manage notices on WordPress admin pages. Adds 'Notices' screen-meta-link. * Description: Manage notices on WordPress admin pages. Adds 'Notices' screen-meta-link.
* Version: 0.17 * Version: 0.18
* Author: abuyoyo * Author: abuyoyo
* Author URI: https://github.com/abuyoyo/ * Author URI: https://github.com/abuyoyo/
* Plugin URI: https://github.com/abuyoyo/notice-manager * Plugin URI: https://github.com/abuyoyo/notice-manager

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "notice-manager", "name": "notice-manager",
"version": "0.16.0", "version": "0.18.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "notice-manager", "name": "notice-manager",
"version": "0.16.0", "version": "0.18.0",
"description": "Manage notices on WordPress admin pages. Adds 'Notices' screen-meta-link.", "description": "Manage notices on WordPress admin pages. Adds 'Notices' screen-meta-link.",
"author": "abuyoyo", "author": "abuyoyo",
"repository": { "repository": {

View File

@ -1,5 +1,11 @@
# WPHelper\PluginCore Changelog # WPHelper\PluginCore Changelog
## 0.23
Release Date: Aug 8, 2022
### Fixed
- Minor fixes.
## 0.22 ## 0.22
Release Date: Aug 8, 2022 Release Date: Aug 8, 2022

View File

@ -18,7 +18,7 @@ if ( ! class_exists( 'WPHelper/PluginCore' ) ):
* Defines PLUGIN_PATH, PLUGIN_URL (etc.) constants * Defines PLUGIN_PATH, PLUGIN_URL (etc.) constants
* (@see README.md) * (@see README.md)
* *
* @version 0.22 * @version 0.23
*/ */
class PluginCore { class PluginCore {

View File

@ -2,10 +2,10 @@
"name": "abuyoyo/plugincore", "name": "abuyoyo/plugincore",
"description": "WordPress plugin core helper class", "description": "WordPress plugin core helper class",
"type": "library", "type": "library",
"version": "0.22", "version": "0.23",
"time": "2022-08-05", "time": "2022-08-06",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"recommend": { "suggest": {
"yahnis-elsts/plugin-update-checker": "~4.12", "yahnis-elsts/plugin-update-checker": "~4.12",
"abuyoyo/adminmenupage": "~0.20" "abuyoyo/adminmenupage": "~0.20"
}, },

View File

@ -43,20 +43,24 @@
}, },
{ {
"name": "abuyoyo/plugincore", "name": "abuyoyo/plugincore",
"version": "0.22", "version": "0.23",
"version_normalized": "0.22.0.0", "version_normalized": "0.23.0.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/abuyoyo/PluginCore.git", "url": "https://github.com/abuyoyo/PluginCore.git",
"reference": "736b38d82fc41c7102ec28f386f4df807a10ab05" "reference": "0a5809d6722a2abf0bdaf23f73bd3875b00fd2a4"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/abuyoyo/PluginCore/zipball/736b38d82fc41c7102ec28f386f4df807a10ab05", "url": "https://api.github.com/repos/abuyoyo/PluginCore/zipball/0a5809d6722a2abf0bdaf23f73bd3875b00fd2a4",
"reference": "736b38d82fc41c7102ec28f386f4df807a10ab05", "reference": "0a5809d6722a2abf0bdaf23f73bd3875b00fd2a4",
"shasum": "" "shasum": ""
}, },
"time": "2022-08-05T00:00:00+00:00", "suggest": {
"abuyoyo/adminmenupage": "~0.20",
"yahnis-elsts/plugin-update-checker": "~4.12"
},
"time": "2022-08-06T00:00:00+00:00",
"type": "library", "type": "library",
"installation-source": "dist", "installation-source": "dist",
"autoload": { "autoload": {
@ -71,7 +75,7 @@
"description": "WordPress plugin core helper class", "description": "WordPress plugin core helper class",
"support": { "support": {
"issues": "https://github.com/abuyoyo/PluginCore/issues", "issues": "https://github.com/abuyoyo/PluginCore/issues",
"source": "https://github.com/abuyoyo/PluginCore/tree/0.22" "source": "https://github.com/abuyoyo/PluginCore/tree/0.23"
}, },
"install-path": "../abuyoyo/plugincore" "install-path": "../abuyoyo/plugincore"
}, },

View File

@ -1,7 +1,7 @@
<?php return array( <?php return array(
'root' => array( 'root' => array(
'pretty_version' => '0.17', 'pretty_version' => '0.18',
'version' => '0.17.0.0', 'version' => '0.18.0.0',
'type' => 'wordpress-plugin', 'type' => 'wordpress-plugin',
'install_path' => __DIR__ . '/../../', 'install_path' => __DIR__ . '/../../',
'aliases' => array(), 'aliases' => array(),
@ -20,8 +20,8 @@
'dev_requirement' => false, 'dev_requirement' => false,
), ),
'abuyoyo/notice-manager' => array( 'abuyoyo/notice-manager' => array(
'pretty_version' => '0.17', 'pretty_version' => '0.18',
'version' => '0.17.0.0', 'version' => '0.18.0.0',
'type' => 'wordpress-plugin', 'type' => 'wordpress-plugin',
'install_path' => __DIR__ . '/../../', 'install_path' => __DIR__ . '/../../',
'aliases' => array(), 'aliases' => array(),
@ -29,12 +29,12 @@
'dev_requirement' => false, 'dev_requirement' => false,
), ),
'abuyoyo/plugincore' => array( 'abuyoyo/plugincore' => array(
'pretty_version' => '0.22', 'pretty_version' => '0.23',
'version' => '0.22.0.0', 'version' => '0.23.0.0',
'type' => 'library', 'type' => 'library',
'install_path' => __DIR__ . '/../abuyoyo/plugincore', 'install_path' => __DIR__ . '/../abuyoyo/plugincore',
'aliases' => array(), 'aliases' => array(),
'reference' => '736b38d82fc41c7102ec28f386f4df807a10ab05', 'reference' => '0a5809d6722a2abf0bdaf23f73bd3875b00fd2a4',
'dev_requirement' => false, 'dev_requirement' => false,
), ),
'abuyoyo/screen-meta-links' => array( 'abuyoyo/screen-meta-links' => array(