prepare release 0.6.1 (#433)

This commit is contained in:
Kevin Papst
2018-11-19 16:17:28 +01:00
committed by GitHub
parent 67dc1c7640
commit f74547008d
4 changed files with 23 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
unreleased=true unreleased=true
future-release=0.6 future-release=0.6.1
exclude-labels=duplicate,question,invalid,wontfix,release exclude-labels=duplicate,question,invalid,wontfix,release

View File

@@ -1,5 +1,22 @@
# Change Log # Change Log
## [0.6.1](https://github.com/kevinpapst/kimai2/tree/0.6.1) (2018-11-19)
[Full Changelog](https://github.com/kevinpapst/kimai2/compare/0.6...0.6.1)
**Fixed bugs:**
- Error importing v1 Database [\#428](https://github.com/kevinpapst/kimai2/issues/428)
- Redo button missing? [\#426](https://github.com/kevinpapst/kimai2/issues/426)
**Closed issues:**
- Error importing v1 Database \(could not convert to string\) [\#431](https://github.com/kevinpapst/kimai2/issues/431)
**Merged pull requests:**
- fix migration for MySQL [\#430](https://github.com/kevinpapst/kimai2/pull/430) ([kevinpapst](https://github.com/kevinpapst))
- fix importer for MySQL [\#429](https://github.com/kevinpapst/kimai2/pull/429) ([kevinpapst](https://github.com/kevinpapst))
## [0.6](https://github.com/kevinpapst/kimai2/tree/0.6) (2018-11-18) ## [0.6](https://github.com/kevinpapst/kimai2/tree/0.6) (2018-11-18)
[Full Changelog](https://github.com/kevinpapst/kimai2/compare/0.5...0.6) [Full Changelog](https://github.com/kevinpapst/kimai2/compare/0.5...0.6)

View File

@@ -18,6 +18,10 @@ bin/console doctrine:migrations:migrate
There might be version specific tasks that need to be executed before or after these steps, please see below There might be version specific tasks that need to be executed before or after these steps, please see below
if your updated version is mentioned below. if your updated version is mentioned below.
## [0.6.1](https://github.com/kevinpapst/kimai2/releases/tag/0.6.1) (2018-11-19)
A bugfix release to address database compatibility issues with older MySQL/MariaDB versions.
## [0.6](https://github.com/kevinpapst/kimai2/releases/tag/0.6) (2018-11-18) ## [0.6](https://github.com/kevinpapst/kimai2/releases/tag/0.6) (2018-11-18)
The API has some minor BC breaks: some fields were renamed and entities have a larger attribute set than collections. The API has some minor BC breaks: some fields were renamed and entities have a larger attribute set than collections.

View File

@@ -17,7 +17,7 @@ class Constants
/** /**
* The current release version * The current release version
*/ */
public const VERSION = 0.6; public const VERSION = '0.6.1';
/** /**
* The release name, will only change for new major version * The release name, will only change for new major version
*/ */