From c4af1edefef3494dd483de5b168af4f08179fda5 Mon Sep 17 00:00:00 2001 From: Andrew Collington Date: Fri, 25 Aug 2023 19:02:59 +0100 Subject: [PATCH] Corrected version information (fixes #100) --- README.md | 3 +++ build/build.php | 2 +- build/template.phps | 2 +- composer.json | 2 +- index.php | 4 ++-- package.json | 2 +- src/Opcache/Service.php | 2 +- 7 files changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 29d0a8b..2f98339 100644 --- a/README.md +++ b/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 diff --git a/build/build.php b/build/build.php index fae214d..2882436 100644 --- a/build/build.php +++ b/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/ */ diff --git a/build/template.phps b/build/template.phps index d3b7b2f..e0b579b 100644 --- a/build/template.phps +++ b/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/ */ diff --git a/composer.json b/composer.json index c4e2360..3d647b3 100644 --- a/composer.json +++ b/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", diff --git a/index.php b/index.php index 143510e..ed161fe 100644 --- a/index.php +++ b/index.php @@ -8,7 +8,7 @@ * 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 @@ class Service { - public const VERSION = '3.5.0'; + public const VERSION = '3.5.1'; protected $tz; protected $data; diff --git a/package.json b/package.json index a395a49..4cd3e90 100644 --- a/package.json +++ b/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", diff --git a/src/Opcache/Service.php b/src/Opcache/Service.php index e297e83..816f69c 100644 --- a/src/Opcache/Service.php +++ b/src/Opcache/Service.php @@ -8,7 +8,7 @@ class Service { - public const VERSION = '3.5.0'; + public const VERSION = '3.5.1'; protected $tz; protected $data;