diff --git a/Changelog.md b/Changelog.md index e2eda6b..e8b9739 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,11 @@ # Changelog This file holds the changelog for Pepperminty Wiki. This is the master list of things that have changed (second only to the commit history!) - though the information for any particular release can also be found in the description of it's page for every release made on GitHub too. +## v0.16-dev + +### Fixed + - Properly escaped content of short code box on file pages + ## v0.15.1 ### Added diff --git a/build/index.php b/build/index.php index e8ef4de..95c8031 100644 --- a/build/index.php +++ b/build/index.php @@ -385,7 +385,7 @@ if($settings->css === "auto") ////// Do not edit below this line unless you know what you are doing! ////// ///////////////////////////////////////////////////////////////////////////// /** The version of Pepperminty Wiki currently running. */ -$version = "v0.15.1"; +$version = "v0.16-dev"; /// Environment /// /** Holds information about the current request environment. */ $env = new stdClass(); @@ -1467,7 +1467,7 @@ class page_renderer {extra} @@ -1485,7 +1485,7 @@ class page_renderer

From {sitename}, which is managed by {admin-details-name}.

{footer-message}

Timed at {generation-date}

-

Powered by Pepperminty Wiki v0.15.1.

+

Powered by Pepperminty Wiki v0.16-dev.

"; /** @@ -1563,7 +1563,7 @@ class page_renderer "{body}" => $body_template, "{sitename}" => $logo_html, - "v0.15.1" => $version, + "v0.16-dev" => $version, "{favicon-url}" => $settings->favicon, "{header-html}" => self::get_header_html(), diff --git a/version b/version index 5f1dd0a..973dcf5 100644 --- a/version +++ b/version @@ -1 +1 @@ -v0.15.1 +v0.16-dev