Skip to content

Commit

Permalink
chore: v4.0.0-RC release
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed Oct 14, 2024
1 parent 6bc3b02 commit cfb3d46
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

This is a log of major user-visible changes in each phpMyFAQ release.

### phpMyFAQ v4.0.0-beta.2 - 2024-09-22
### phpMyFAQ v4.0.0-RC - 2024-10-14

- changed PHP requirement to PHP 8.2 or later (Thorsten)
- changed rewrite rules for Apache and nginx as mandatory requirement (Thorsten)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# phpMyFAQ 4.0-beta
# phpMyFAQ 4.0-RC

![Packagist PHP Version Support](https://img.shields.io/packagist/php-v/thorsten/phpMyFAQ)
![GitHub](https://img.shields.io/github/license/thorsten/phpMyFAQ)
Expand Down
2 changes: 1 addition & 1 deletion docs/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class MyPlugin implements PluginInterface

public function getVersion(): string
{
return '1.0.0';
return '0.1.0';
}

public function getDependencies(): array
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thorsten/phpmyfaq",
"version": "4.0.0-beta",
"version": "4.0.0-RC",
"description": "phpMyFAQ",
"repository": "git://github.com/thorsten/phpMyFAQ.git",
"author": "Thorsten Rinne",
Expand Down
2 changes: 1 addition & 1 deletion phpmyfaq/content/plugins/HelloWorld/HelloWorldPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function getName(): string

public function getVersion(): string
{
return '0.0.1';
return '0.1.0';
}

public function getDependencies(): array
Expand Down
4 changes: 2 additions & 2 deletions phpmyfaq/src/phpMyFAQ/System.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class System
/**
* Pre-release version.
*/
private const VERSION_PRE_RELEASE = 'beta.2';
private const VERSION_PRE_RELEASE = 'RC';

/**
* API version.
Expand All @@ -62,7 +62,7 @@ class System
/**
* Plugin version.
*/
private const PLUGIN_VERSION = '0.0.1';
private const PLUGIN_VERSION = '0.1.0';

/**
* Minimum required PHP version.
Expand Down
2 changes: 1 addition & 1 deletion scripts/version.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
if [ "x${PMF_VERSION}" = "x" ]; then
PMF_VERSION="4.0.0-beta.2"
PMF_VERSION="4.0.0-RC"
fi

0 comments on commit cfb3d46

Please sign in to comment.