Skip to content

Commit 9f18a5c

Browse files
committed
chore: next version will be 4.0.0-beta.2
1 parent 3e4d847 commit 9f18a5c

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

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.0.0-beta - 2024-09-01
9+
### phpMyFAQ v4.0.0-beta.2 - unreleased
1010

1111
- changed PHP requirement to PHP 8.2 or later (Thorsten)
1212
- changed rewrite rules for Apache and nginx as mandatory requirement (Thorsten)

phpmyfaq/assets/templates/default/faq.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
{% block content %}
2323
<div class="row g-5">
2424
<div class="col-md-8">
25-
<h2 class="mb-4 border-bottom">{{ question }}</h2>
25+
<h2 class="mb-4 border-bottom">{{ question | raw }}</h2>
2626

2727
<article class="pmf-faq-body pb-4 mb-4 border-bottom">{{ answer|raw }}</article>
2828

phpmyfaq/src/phpMyFAQ/System.php

Lines changed: 1 addition & 1 deletion
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 = 'beta';
55+
private const VERSION_PRE_RELEASE = 'beta.2';
5656

5757
/**
5858
* API version.

scripts/version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
if [ "x${PMF_VERSION}" = "x" ]; then
3-
PMF_VERSION="4.0.0-beta"
3+
PMF_VERSION="4.0.0-beta.2"
44
fi

0 commit comments

Comments
 (0)