Corrected version information (fixes #100)
This commit is contained in:
parent
8198b5cb3d
commit
c4af1edefe
7 changed files with 10 additions and 7 deletions
|
@ -231,6 +231,9 @@ So to get started with a new language, copy the `example.json` to the language y
|
|||
|
||||
## Releases
|
||||
|
||||
**Version 3.5.1**\
|
||||
This is just 3.5.0 but with corrected version tags to make Packagist happy and correct my mistake. :facepalm:
|
||||
|
||||
**Version 3.5.0**\
|
||||
This version changes how the build process includes the javascript.
|
||||
* The `-j`/`--local-js` flag now embeds the javascript into the `index.php` file rather than having them as a separate files
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* OPcache GUI - build script
|
||||
*
|
||||
* @author Andrew Collington, andy@amnuts.com
|
||||
* @version 3.5.0
|
||||
* @version 3.5.1
|
||||
* @link https://github.com/amnuts/opcache-gui
|
||||
* @license MIT, https://acollington.mit-license.org/
|
||||
*/
|
||||
|
|
|
@ -8,7 +8,7 @@ namespace Amnuts\Opcache;
|
|||
* A simple but effective single-file GUI for the OPcache PHP extension.
|
||||
*
|
||||
* @author Andrew Collington, andy@amnuts.com
|
||||
* @version 3.5.0
|
||||
* @version 3.5.1
|
||||
* @link https://github.com/amnuts/opcache-gui
|
||||
* @license MIT, https://acollington.mit-license.org/
|
||||
*/
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"keywords": ["opcache", "cache", "gui", "opcodes", "interface"],
|
||||
"minimum-stability": "stable",
|
||||
"license": "MIT",
|
||||
"version": "3.4.0",
|
||||
"version": "3.5.1",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Andrew Collington",
|
||||
|
|
|
@ -8,7 +8,7 @@ namespace Amnuts\Opcache;
|
|||
* A simple but effective single-file GUI for the OPcache PHP extension.
|
||||
*
|
||||
* @author Andrew Collington, andy@amnuts.com
|
||||
* @version 3.5.0
|
||||
* @version 3.5.1
|
||||
* @link https://github.com/amnuts/opcache-gui
|
||||
* @license MIT, https://acollington.mit-license.org/
|
||||
*/
|
||||
|
@ -65,7 +65,7 @@ use Exception;
|
|||
|
||||
class Service
|
||||
{
|
||||
public const VERSION = '3.5.0';
|
||||
public const VERSION = '3.5.1';
|
||||
|
||||
protected $tz;
|
||||
protected $data;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "opcache-gui",
|
||||
"description": "A clean and responsive interface for Zend OPcache information, showing statistics, settings and cached files, and providing a real-time update for the information (using jQuery and React).",
|
||||
"version": "3.4.0",
|
||||
"version": "3.5.1",
|
||||
"main": "index.js",
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.12.8",
|
||||
|
|
|
@ -8,7 +8,7 @@ use Exception;
|
|||
|
||||
class Service
|
||||
{
|
||||
public const VERSION = '3.5.0';
|
||||
public const VERSION = '3.5.1';
|
||||
|
||||
protected $tz;
|
||||
protected $data;
|
||||
|
|
Loading…
Reference in a new issue