Skip to content

Commit 677bbaf

Browse files
committed
chore: v4.0.3 release
1 parent b78d5f9 commit 677bbaf

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66

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

9-
### phpMyFAQ v4.0.3 - unreleased
9+
### phpMyFAQ v4.0.3 - 2025-01-03
1010

1111
- fixed installation bug introduced with v4.0.2 (Thorsten)
12+
- fixed minor bug (Thorsten)
1213

1314
### phpMyFAQ v4.0.2 - 2025-01-02
1415

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thorsten/phpmyfaq",
3-
"version": "4.0.2",
3+
"version": "4.0.3",
44
"description": "phpMyFAQ",
55
"repository": "git://github.com/thorsten/phpMyFAQ.git",
66
"author": "Thorsten Rinne",

phpmyfaq/src/phpMyFAQ/System.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class System
4747
/**
4848
* Patch level.
4949
*/
50-
private const VERSION_PATCH_LEVEL = 2;
50+
private const VERSION_PATCH_LEVEL = 3;
5151

5252
/**
5353
* Pre-release version.

scripts/version.sh

+1-1
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.0.2"
4+
PMF_VERSION="4.0.3"
55
fi

0 commit comments

Comments
 (0)