Skip to content

Commit c4af1ed

Browse files
committed
Corrected version information (fixes #100)
1 parent 8198b5c commit c4af1ed

File tree

7 files changed

+10
-7
lines changed

7 files changed

+10
-7
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,9 @@ So to get started with a new language, copy the `example.json` to the language y
231231

232232
## Releases
233233

234+
**Version 3.5.1**\
235+
This is just 3.5.0 but with corrected version tags to make Packagist happy and correct my mistake. :facepalm:
236+
234237
**Version 3.5.0**\
235238
This version changes how the build process includes the javascript.
236239
* The `-j`/`--local-js` flag now embeds the javascript into the `index.php` file rather than having them as a separate files

build/build.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* OPcache GUI - build script
55
*
66
* @author Andrew Collington, andy@amnuts.com
7-
* @version 3.5.0
7+
* @version 3.5.1
88
* @link https://github.com/amnuts/opcache-gui
99
* @license MIT, https://acollington.mit-license.org/
1010
*/

build/template.phps

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Amnuts\Opcache;
88
* A simple but effective single-file GUI for the OPcache PHP extension.
99
*
1010
* @author Andrew Collington, andy@amnuts.com
11-
* @version 3.5.0
11+
* @version 3.5.1
1212
* @link https://github.com/amnuts/opcache-gui
1313
* @license MIT, https://acollington.mit-license.org/
1414
*/

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"keywords": ["opcache", "cache", "gui", "opcodes", "interface"],
55
"minimum-stability": "stable",
66
"license": "MIT",
7-
"version": "3.4.0",
7+
"version": "3.5.1",
88
"authors": [
99
{
1010
"name": "Andrew Collington",

index.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* A simple but effective single-file GUI for the OPcache PHP extension.
99
*
1010
* @author Andrew Collington, andy@amnuts.com
11-
* @version 3.5.0
11+
* @version 3.5.1
1212
* @link https://github.com/amnuts/opcache-gui
1313
* @license MIT, https://acollington.mit-license.org/
1414
*/
@@ -65,7 +65,7 @@
6565

6666
class Service
6767
{
68-
public const VERSION = '3.5.0';
68+
public const VERSION = '3.5.1';
6969

7070
protected $tz;
7171
protected $data;

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "opcache-gui",
33
"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).",
4-
"version": "3.4.0",
4+
"version": "3.5.1",
55
"main": "index.js",
66
"devDependencies": {
77
"@babel/cli": "^7.12.8",

src/Opcache/Service.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class Service
1010
{
11-
public const VERSION = '3.5.0';
11+
public const VERSION = '3.5.1';
1212

1313
protected $tz;
1414
protected $data;

0 commit comments

Comments
 (0)