release 0.8.1 (#595)

This commit is contained in:
Kevin Papst
2019-02-22 18:05:45 +01:00
committed by GitHub
parent 239be527b8
commit 1f7ec6769a
4 changed files with 22 additions and 2 deletions

View File

@@ -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

View File

@@ -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:**

View File

@@ -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:

View File

@@ -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
*/