Skip to content

Commit

Permalink
chore: 4.1.0-dev -> 4.1.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed Jan 9, 2025
1 parent cda711e commit c79a8c7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 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.1.0-dev - unreleased
### phpMyFAQ v4.1.0-alpha - unreleased

- added configuration to edit robots.txt (Thorsten)
- added Symfony Routing for administration backend (Thorsten)
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.1.0-dev",
"version": "4.1.0-alpha",
"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.2.0';
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 = 'dev';
private const VERSION_PRE_RELEASE = 'alpha';

/**
* API version.
Expand All @@ -62,7 +62,7 @@ class System
/**
* Plugin version.
*/
private const PLUGIN_VERSION = '0.2.0';
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,5 +1,5 @@
#!/bin/sh
# Check if PMF_VERSION is not set or empty
if [ -z "${PMF_VERSION}" ]; then
PMF_VERSION="4.1.0-dev"
PMF_VERSION="4.1.0-alpha"
fi

0 comments on commit c79a8c7

Please sign in to comment.