Update meta files.

This commit is contained in:
James Cole
2019-02-10 14:32:34 +01:00
parent 8998c9a672
commit 4c94820cf4
3 changed files with 17 additions and 5 deletions

View File

@@ -1,3 +1,15 @@
# 4.7.11
- Experimental audit logging channel to track important events (separate from debug logging).
- [Issue 2003](https://github.com/firefly-iii/firefly-iii/issues/2003), [issue 2006](https://github.com/firefly-iii/firefly-iii/issues/2006) Transactions can be stored with a timestamp. The user-interface does not support this yet. But the API does.
- Docker image tags a new manifest for arm and amd64.
- [skuzzle](https://github.com/skuzzle) removed an annoying console.log statement.
- [Issue 2048](https://github.com/firefly-iii/firefly-iii/issues/2048) Fix "Are you sure?" popup, thanks to @nescafe2002!
- [Issue 2049](https://github.com/firefly-iii/firefly-iii/issues/2049) Empty preferences would crash Firefly III.
- [Issue 2052](https://github.com/firefly-iii/firefly-iii/issues/2052) Rules could not auto-covert to liabilities.
- Webbased upgrade routine will also decrypt the database.
- Last use date for categories was off.
- The `date`-field in any transaction object now returns a ISO 8601 timestamp instead of a date.
# 4.7.10
- [Issue 2037](https://github.com/firefly-iii/firefly-iii/issues/2037) Added some new magic keywords to reports.
- Added a new currency exchange rate service, [ratesapi.io](https://ratesapi.io/), that does not require expensive API keys. Built by [@BoGnY](https://github.com/BoGnY).

View File

@@ -15,8 +15,8 @@ const pkgdef :Spk.PackageDefinition = (
manifest = (
appTitle = (defaultText = "Firefly III"),
appVersion = 20,
appMarketingVersion = (defaultText = "4.7.10"),
appVersion = 21,
appMarketingVersion = (defaultText = "4.7.11"),
actions = [
# Define your "new document" handlers here.

View File

@@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [4.7.11] - 2019-02-09
## [4.7.11 (API 0.9.2)] - 2019-02-10
### Added
- Experimental audit logging channel to track important events (separate from debug logging).
@@ -21,8 +21,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Last use date for categories was off.
### API
- The `date`-field in any transaction object now returns a ISO 8601 timestamp instead of a date.
- The `date`-field in any transaction object now returns a ISO 8601 timestamp instead of a date.
## [4.7.10] - 2019-02-03
### Added