Update version and readme

This commit is contained in:
James Cole
2019-12-29 16:12:57 +01:00
parent d96f4bfe4a
commit 26f5e5e518
2 changed files with 12 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [5.0.0 (API 1.0.0)] - 20xx-xx-xx ## [5.0.0 (API 1.0.0)] - 20xx-xx-xx
*This version has not yet been released.* The latest available version is **5.0.0-alpha.1**. *This version has not yet been released.* The latest available version is **5.0.0-alpha.2**.
This version represents, if anything, a fresh start in the version numbering system so Firefly III will finally follow SemVer, for real this time. This version represents, if anything, a fresh start in the version numbering system so Firefly III will finally follow SemVer, for real this time.
@@ -15,18 +15,24 @@ This version represents, if anything, a fresh start in the version numbering sys
- Firefly III now supports redis as cache backend. - Firefly III now supports redis as cache backend.
- Footer will warn you of alpha and beta versions. - Footer will warn you of alpha and beta versions.
- [Issue 2901](https://github.com/firefly-iii/firefly-iii/issues/2901) Can select liability accounts when running rules. - [Issue 2901](https://github.com/firefly-iii/firefly-iii/issues/2901) Can select liability accounts when running rules.
- [Issue 2893](https://github.com/firefly-iii/firefly-iii/issues/2893) Add config cache clear command to Docker build.
- [Issue 2667](https://github.com/firefly-iii/firefly-iii/issues/2667) Option to export data from Firefly III
- [Issue 2064](https://github.com/firefly-iii/firefly-iii/issues/2064) Ability to mass-delete tags.
- Can now give accounts a location tag. TODO: API, migrate tags, edit-screen.
### Changed ### Changed
- [Issue 2776](https://github.com/firefly-iii/firefly-iii/issues/2776) Some charts now do relative scaling. Useful for large amounts. - [Issue 2776](https://github.com/firefly-iii/firefly-iii/issues/2776) Some charts now do relative scaling. Useful for large amounts.
- [Issue 2702](https://github.com/firefly-iii/firefly-iii/issues/2702) More details on tags overview - [Issue 2702](https://github.com/firefly-iii/firefly-iii/issues/2702) More details on tags overview
- Fine tune the Docker container startup times using new environment variables. - Fine tune the Docker container startup times using new environment variables.
- [Issue 2919](https://github.com/firefly-iii/firefly-iii/issues/2919) Didn't support user's choice not to check for updates.
### Deprecated ### Deprecated
- Firefly III no longer supports the SFTP storage backend, nor does it support the ability to use both SFTP and local files as storage backends, because the - Firefly III no longer supports the SFTP storage backend, nor does it support the ability to use both SFTP and local files as storage backends, because the
packages required are no longer maintained and will not work with Laravel 6.0. packages required are no longer maintained and will not work with Laravel 6.0.
### Removed ### Removed
- Nothing yet. - Firefly III will no longer be built for Sandstorm.
- The Docker image is built from a separate repository.
### Fixed ### Fixed
- [Issue 2907](https://github.com/firefly-iii/firefly-iii/issues/2907) Bad date display in recurring transactions. - [Issue 2907](https://github.com/firefly-iii/firefly-iii/issues/2907) Bad date display in recurring transactions.
@@ -35,6 +41,8 @@ This version represents, if anything, a fresh start in the version numbering sys
- [Issue 2878](https://github.com/firefly-iii/firefly-iii/issues/2878) Typo in code of budget overview. - [Issue 2878](https://github.com/firefly-iii/firefly-iii/issues/2878) Typo in code of budget overview.
- [Issue 2876](https://github.com/firefly-iii/firefly-iii/issues/2876) Trailing zeroes and other issues. - [Issue 2876](https://github.com/firefly-iii/firefly-iii/issues/2876) Trailing zeroes and other issues.
- [Issue 2881](https://github.com/firefly-iii/firefly-iii/issues/2881) An error when only the title of a split transaction was bad. - [Issue 2881](https://github.com/firefly-iii/firefly-iii/issues/2881) An error when only the title of a split transaction was bad.
- [Issue 2924](https://github.com/firefly-iii/firefly-iii/issues/2924) Could not trigger rules when set to "update".
- [Issue 2691](https://github.com/firefly-iii/firefly-iii/issues/2691) Fix to update recurring transactions with bad types.
### Security ### Security
- Nothing yet. - Nothing yet.

View File

@@ -136,9 +136,9 @@ return [
'export' => true, 'export' => true,
], ],
'encryption' => null === env('USE_ENCRYPTION') || env('USE_ENCRYPTION') === true, 'encryption' => null === env('USE_ENCRYPTION') || env('USE_ENCRYPTION') === true,
'version' => '5.0.0-alpha.1', 'version' => '5.0.0-alpha.2',
'api_version' => '1.0.0', 'api_version' => '1.0.0',
'db_version' => 11, 'db_version' => 12,
'maxUploadSize' => 15242880, 'maxUploadSize' => 15242880,
'send_error_message' => env('SEND_ERROR_MESSAGE', true), 'send_error_message' => env('SEND_ERROR_MESSAGE', true),
'site_owner' => env('SITE_OWNER', ''), 'site_owner' => env('SITE_OWNER', ''),