aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-01-16 12:57:56 +0100
committerGitHub <noreply@github.com>2017-01-16 12:57:56 +0100
commitd029cf67f85c5aac1dc96b35d5e8b5e85aa25cbd (patch)
treeea58a79d2387403bf8695b32549e806697fd7472
parent4d9fd16ddf2a7d6488c4200aca48501e9d5886fe (diff)
parentae7f6b9d09c0f3e31d64e6c8a9804d5ab0c62eae (diff)
downloadShaarli-d029cf67f85c5aac1dc96b35d5e8b5e85aa25cbd.tar.gz
Shaarli-d029cf67f85c5aac1dc96b35d5e8b5e85aa25cbd.tar.zst
Shaarli-d029cf67f85c5aac1dc96b35d5e8b5e85aa25cbd.zip
Merge pull request #765 from ArthurHoaro/master
Cherry-pick version bump from v0.8 branch
-rw-r--r--CHANGELOG.md5
-rw-r--r--index.php4
-rw-r--r--shaarli_version.php2
3 files changed, 8 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d2d63166..04aacad6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -52,6 +52,11 @@ configuration to enable URL rewriting, see:
52- Fix permalink image alignment in daily page 52- Fix permalink image alignment in daily page
53- Fix the delete button in `editlink` 53- Fix the delete button in `editlink`
54 54
55## [v0.8.2](https://github.com/shaarli/Shaarli/releases/tag/v0.8.2) - 2016-12-15
56
57### Fixed
58
59- Editing a link created before the new ID system would change its permalink.
55 60
56## [v0.8.1](https://github.com/shaarli/Shaarli/releases/tag/v0.8.1) - 2016-12-12 61## [v0.8.1](https://github.com/shaarli/Shaarli/releases/tag/v0.8.1) - 2016-12-12
57 62
diff --git a/index.php b/index.php
index b27c83b6..145ea3f6 100644
--- a/index.php
+++ b/index.php
@@ -1,6 +1,6 @@
1<?php 1<?php
2/** 2/**
3 * Shaarli v0.8.1 - Shaare your links... 3 * Shaarli v0.8.2 - Shaare your links...
4 * 4 *
5 * The personal, minimalist, super-fast, database free, bookmarking service. 5 * The personal, minimalist, super-fast, database free, bookmarking service.
6 * 6 *
@@ -25,7 +25,7 @@ if (date_default_timezone_get() == '') {
25/* 25/*
26 * PHP configuration 26 * PHP configuration
27 */ 27 */
28define('shaarli_version', '0.8.1'); 28define('shaarli_version', '0.8.2');
29 29
30// http://server.com/x/shaarli --> /shaarli/ 30// http://server.com/x/shaarli --> /shaarli/
31define('WEB_PATH', substr($_SERVER['REQUEST_URI'], 0, 1+strrpos($_SERVER['REQUEST_URI'], '/', 0))); 31define('WEB_PATH', substr($_SERVER['REQUEST_URI'], 0, 1+strrpos($_SERVER['REQUEST_URI'], '/', 0)));
diff --git a/shaarli_version.php b/shaarli_version.php
index 431387bb..e93b0e7f 100644
--- a/shaarli_version.php
+++ b/shaarli_version.php
@@ -1 +1 @@
<?php /* 0.8.1 */ ?> <?php /* 0.8.2 */ ?>