Updated version number and added to readme - fixes #58
This commit is contained in:
parent
db965ad03e
commit
b269562571
6 changed files with 9 additions and 6 deletions
|
@ -158,6 +158,9 @@ When the real-time updates are active the interface will automatically update al
|
|||
|
||||
## Releases
|
||||
|
||||
**Version 3.0.1**\
|
||||
A minor update that will use http or https to get the javascript libraries, depending on what you're using.
|
||||
|
||||
**Version 3.0.0**\
|
||||
Although the interface looks mostly the same, it's had a complete re-write under the hood! Some of the more notable changes are:
|
||||
* New namespace for the base service class which ensure composer compatibility
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* OPcache GUI - build script
|
||||
*
|
||||
* @author Andrew Collington, andy@amnuts.com
|
||||
* @version 3.0.0
|
||||
* @version 3.0.1
|
||||
* @link https://github.com/amnuts/opcache-gui
|
||||
* @license MIT, http://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.0.0
|
||||
* @version 3.0.1
|
||||
* @link https://github.com/amnuts/opcache-gui
|
||||
* @license MIT, http://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.0.0
|
||||
* @version 3.0.1
|
||||
* @link https://github.com/amnuts/opcache-gui
|
||||
* @license MIT, http://acollington.mit-license.org/
|
||||
*/
|
||||
|
@ -57,7 +57,7 @@ header('Pragma: no-cache');
|
|||
|
||||
class Service
|
||||
{
|
||||
const VERSION = '3.0.0';
|
||||
const VERSION = '3.0.1';
|
||||
|
||||
protected $data;
|
||||
protected $options;
|
||||
|
|
|
@ -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.0.0",
|
||||
"version": "3.0.1",
|
||||
"main": "index.js",
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.0.0",
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace Amnuts\Opcache;
|
|||
|
||||
class Service
|
||||
{
|
||||
const VERSION = '3.0.0';
|
||||
const VERSION = '3.0.1';
|
||||
|
||||
protected $data;
|
||||
protected $options;
|
||||
|
|
Loading…
Add table
Reference in a new issue