From 1f7ec6769a70bc4dec42fd899f424224dd9e82e9 Mon Sep 17 00:00:00 2001 From: Kevin Papst Date: Fri, 22 Feb 2019 18:05:45 +0100 Subject: [PATCH] release 0.8.1 (#595) --- .github_changelog_generator | 2 +- CHANGELOG.md | 16 ++++++++++++++++ UPGRADING.md | 4 ++++ src/Constants.php | 2 +- 4 files changed, 22 insertions(+), 2 deletions(-) diff --git a/.github_changelog_generator b/.github_changelog_generator index f1bc90eb..4bc23209 100644 --- a/.github_changelog_generator +++ b/.github_changelog_generator @@ -1,4 +1,4 @@ unreleased=true -future-release=0.8 +future-release=0.8.1 exclude-labels=duplicate,question,invalid,wontfix,release enhancement_labels=>enhancement,Enhancement,feature request \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 3412fd7c..7984547f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Change Log +## [0.8.1](https://github.com/kevinpapst/kimai2/tree/0.8.1) (2019-02-22) +[Full Changelog](https://github.com/kevinpapst/kimai2/compare/0.8...0.8.1) + +**Fixed bugs:** + +- deletion of customers leads to internal server error 500 [\#589](https://github.com/kevinpapst/kimai2/issues/589) +- Entry editor label wrong \(from/to\) [\#587](https://github.com/kevinpapst/kimai2/issues/587) +- resize mobile navbar buttons [\#582](https://github.com/kevinpapst/kimai2/issues/582) +- Mobile navbar size [\#583](https://github.com/kevinpapst/kimai2/pull/583) ([kevinpapst](https://github.com/kevinpapst)) + +**Merged pull requests:** + +- Support foreign keys with SQLite [\#590](https://github.com/kevinpapst/kimai2/pull/590) ([kevinpapst](https://github.com/kevinpapst)) +- post release fixes [\#584](https://github.com/kevinpapst/kimai2/pull/584) ([kevinpapst](https://github.com/kevinpapst)) + ## [0.8](https://github.com/kevinpapst/kimai2/tree/0.8) (2019-02-19) [Full Changelog](https://github.com/kevinpapst/kimai2/compare/0.7...0.8) @@ -25,6 +40,7 @@ - This value should be greater than or equal to zero [\#511](https://github.com/kevinpapst/kimai2/issues/511) - Wrong time after migration kimai v1 data [\#507](https://github.com/kevinpapst/kimai2/issues/507) - SQL-Error for getRecentActivities\(\) caused by GROUP BY [\#488](https://github.com/kevinpapst/kimai2/issues/488) +- fix sql for only\_full\_group\_by [\#581](https://github.com/kevinpapst/kimai2/pull/581) ([kevinpapst](https://github.com/kevinpapst)) **Closed issues:** diff --git a/UPGRADING.md b/UPGRADING.md index d6bf293a..166f4513 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -19,6 +19,10 @@ Read and follow each version info below, otherwise you risk data inconsistency o And make sure to **create a backup before you start**. +## [0.8.1](https://github.com/kevinpapst/kimai2/releases/tag/0.8.1) + +A bug fixing release. Remember to execute the necessary timezone conversion script, if you haven't updated to 0.8 before (see below)! + ## [0.8](https://github.com/kevinpapst/kimai2/releases/tag/0.8) After you followed the normal update and database migration process (see above), you need to execute a bash command to convert your timesheet data for timezone support: diff --git a/src/Constants.php b/src/Constants.php index 00df31c9..c04ac525 100644 --- a/src/Constants.php +++ b/src/Constants.php @@ -21,7 +21,7 @@ class Constants /** * The current release version */ - public const VERSION = '0.8'; + public const VERSION = '0.8.1'; /** * The release name, will only change for new major version */