Skip to content

Commit c79a8c7

Browse files
committed
chore: 4.1.0-dev -> 4.1.0-alpha
1 parent cda711e commit c79a8c7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

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

9-
### phpMyFAQ v4.1.0-dev - unreleased
9+
### phpMyFAQ v4.1.0-alpha - unreleased
1010

1111
- added configuration to edit robots.txt (Thorsten)
1212
- added Symfony Routing for administration backend (Thorsten)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thorsten/phpmyfaq",
3-
"version": "4.1.0-dev",
3+
"version": "4.1.0-alpha",
44
"description": "phpMyFAQ",
55
"repository": "git://github.com/thorsten/phpMyFAQ.git",
66
"author": "Thorsten Rinne",

phpmyfaq/content/plugins/HelloWorld/HelloWorldPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function getName(): string
3232

3333
public function getVersion(): string
3434
{
35-
return '0.2.0';
35+
return '0.1.0';
3636
}
3737

3838
public function getDependencies(): array

phpmyfaq/src/phpMyFAQ/System.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class System
5252
/**
5353
* Pre-release version.
5454
*/
55-
private const VERSION_PRE_RELEASE = 'dev';
55+
private const VERSION_PRE_RELEASE = 'alpha';
5656

5757
/**
5858
* API version.
@@ -62,7 +62,7 @@ class System
6262
/**
6363
* Plugin version.
6464
*/
65-
private const PLUGIN_VERSION = '0.2.0';
65+
private const PLUGIN_VERSION = '0.1.0';
6666

6767
/**
6868
* Minimum required PHP version.

scripts/version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
22
# Check if PMF_VERSION is not set or empty
33
if [ -z "${PMF_VERSION}" ]; then
4-
PMF_VERSION="4.1.0-dev"
4+
PMF_VERSION="4.1.0-alpha"
55
fi

0 commit comments

Comments
 (0)