diff --git a/.travis.yml b/.travis.yml index f9c80429b4..c6f9b990ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ sudo: required language: bash env: - - VERSION=4.8.1.6 + - VERSION=4.8.1.7 dist: xenial diff --git a/changelog.md b/changelog.md index e8f6ca01ad..567c3ee4fc 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [4.8.1.6 (API 0.10.5)] - 2019-10-26 + +### Fixed +- Error when creating transactions from the index of Firefly III. + +### API +- Firefly III can filter duplicate transactions. +- New endpoint that can search for specific transfers. + ## [4.8.1.6 (API 0.10.4)] - 2019-10-25 ### Fixed diff --git a/config/firefly.php b/config/firefly.php index 7a4a29ee8f..d838f8d7cb 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -125,8 +125,8 @@ return [ 'is_demo_site' => false, ], 'encryption' => null === env('USE_ENCRYPTION') || env('USE_ENCRYPTION') === true, - 'version' => '4.8.1.6', - 'api_version' => '0.10.4', + 'version' => '4.8.1.7', + 'api_version' => '0.10.5', 'db_version' => 11, 'maxUploadSize' => 15242880, 'send_error_message' => env('SEND_ERROR_MESSAGE', true),