Skip to content

Commit

Permalink
Corrected version information (fixes #100)
Browse files Browse the repository at this point in the history
  • Loading branch information
amnuts committed Aug 25, 2023
1 parent 8198b5c commit c4af1ed
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build/build.php
Original file line number Diff line number Diff line change
Expand Up @@ -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/
*/
Expand Down
2 changes: 1 addition & 1 deletion build/template.phps
Original file line number Diff line number Diff line change
Expand Up @@ -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/
*/
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -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/
*/
Expand Down Expand Up @@ -65,7 +65,7 @@

class Service
{
public const VERSION = '3.5.0';
public const VERSION = '3.5.1';

protected $tz;
protected $data;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/Opcache/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class Service
{
public const VERSION = '3.5.0';
public const VERSION = '3.5.1';

protected $tz;
protected $data;
Expand Down

0 comments on commit c4af1ed

Please sign in to comment.