소스 검색

Updated version number and added to readme - fixes #58

Andrew Collington 4 년 전
부모
커밋
b269562571
6개의 변경된 파일9개의 추가작업 그리고 6개의 파일을 삭제
  1. 3 0
      README.md
  2. 1 1
      build/build.php
  3. 1 1
      build/template.phps
  4. 2 2
      index.php
  5. 1 1
      package.json
  6. 1 1
      src/Opcache/Service.php

+ 3 - 0
README.md

@@ -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

+ 1 - 1
build/build.php

@@ -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/
  */

+ 1 - 1
build/template.phps

@@ -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/
  */

+ 2 - 2
index.php

@@ -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 - 1
package.json

@@ -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",

+ 1 - 1
src/Opcache/Service.php

@@ -4,7 +4,7 @@ namespace Amnuts\Opcache;
 
 class Service
 {
-    const VERSION = '3.0.0';
+    const VERSION = '3.0.1';
 
     protected $data;
     protected $options;