浏览代码

Corrected version information (fixes #100)

Andrew Collington 1 年之前
父节点
当前提交
c4af1edefe
共有 7 个文件被更改,包括 10 次插入7 次删除
  1. 3 0
      README.md
  2. 1 1
      build/build.php
  3. 1 1
      build/template.phps
  4. 1 1
      composer.json
  5. 2 2
      index.php
  6. 1 1
      package.json
  7. 1 1
      src/Opcache/Service.php

+ 3 - 0
README.md

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

+ 1 - 1
build/build.php

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

+ 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.5.0
+ * @version 3.5.1
  * @link https://github.com/amnuts/opcache-gui
  * @license MIT, https://acollington.mit-license.org/
  */

+ 1 - 1
composer.json

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

+ 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.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 - 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.4.0",
+  "version": "3.5.1",
   "main": "index.js",
   "devDependencies": {
     "@babel/cli": "^7.12.8",

+ 1 - 1
src/Opcache/Service.php

@@ -8,7 +8,7 @@ use Exception;
 
 class Service
 {
-    public const VERSION = '3.5.0';
+    public const VERSION = '3.5.1';
 
     protected $tz;
     protected $data;