diff --git a/changelog.md b/changelog.md index 3d28178a8c..65b2fda6c8 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## v6.0.4 - 2023-03-13 + +### Fixed +- [Issue 7214](https://github.com/firefly-iii/firefly-iii/issues/7214) Import issue blocking multi currency transactions + ## v6.0.3 - 2023-03-13 ### Fixed diff --git a/config/firefly.php b/config/firefly.php index a6875b7b28..78393a60db 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -107,7 +107,7 @@ return [ 'webhooks' => true, 'handle_debts' => true, ], - 'version' => '6.0.3', + 'version' => '6.0.4', 'api_version' => '2.0.1', 'db_version' => 19, diff --git a/frontend/src/layouts/MainLayout.vue b/frontend/src/layouts/MainLayout.vue index 22aa66f5f4..cafd893fba 100644 --- a/frontend/src/layouts/MainLayout.vue +++ b/frontend/src/layouts/MainLayout.vue @@ -338,7 +338,7 @@ page container: q-ma-xs (margin all, xs) AND q-mb-md to give the page content so
- Firefly III v v6.0.3 © James Cole, AGPL-3.0-or-later. + Firefly III v v6.0.4 © James Cole, AGPL-3.0-or-later.
diff --git a/resources/lang/es_ES/firefly.php b/resources/lang/es_ES/firefly.php index 3d41aa52bd..4b85518e97 100644 --- a/resources/lang/es_ES/firefly.php +++ b/resources/lang/es_ES/firefly.php @@ -648,10 +648,10 @@ return [ 'search_modifier_updated_at_after_day' => 'La transacción se actualizó por última vez en o después día del mes ":value"', 'search_modifier_created_at_on_year' => 'La transacción fue creada en el año":value"', 'search_modifier_created_at_on_month' => 'La transacción fue creada en el mes ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_created_at_on_day' => 'La transacción fue creada en el día del mes ":value"', 'search_modifier_not_created_at_on_year' => 'La transacción no fue creada en el año ":value"', 'search_modifier_not_created_at_on_month' => 'La transacción no fue creada en el mes ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_not_created_at_on_day' => 'La transacción no fue creada en el día del mes ":value"', 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', diff --git a/sonar-project.properties b/sonar-project.properties index e302c3b7db..1f9e17e1d3 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -12,6 +12,6 @@ sonar.organization=firefly-iii #sonar.sourceEncoding=UTF-8 -sonar.projectVersion=6.0.3 +sonar.projectVersion=6.0.4 sonar.sources=app,bootstrap,database,resources/assets,resources/views,routes,tests sonar.sourceEncoding=UTF-8