mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Merge branch 'hotfix/4.7.3.2'
This commit is contained in:
commit
1e212c6da2
@ -1,3 +1,10 @@
|
|||||||
|
# 4.7.3.2
|
||||||
|
- Forgot to increase the version number :(.
|
||||||
|
|
||||||
|
|
||||||
|
# 4.7.3.1
|
||||||
|
- Fixed a critical bug where the rules-engine would fire inadvertently.
|
||||||
|
|
||||||
# 4.7.3
|
# 4.7.3
|
||||||
- Currency added to API
|
- Currency added to API
|
||||||
- Firfely III will also generate a cash wallet for new users.
|
- Firfely III will also generate a cash wallet for new users.
|
||||||
|
@ -15,8 +15,8 @@ const pkgdef :Spk.PackageDefinition = (
|
|||||||
|
|
||||||
manifest = (
|
manifest = (
|
||||||
appTitle = (defaultText = "Firefly III"),
|
appTitle = (defaultText = "Firefly III"),
|
||||||
appVersion = 11,
|
appVersion = 12,
|
||||||
appMarketingVersion = (defaultText = "4.7.3"),
|
appMarketingVersion = (defaultText = "4.7.3.2"),
|
||||||
|
|
||||||
actions = [
|
actions = [
|
||||||
# Define your "new document" handlers here.
|
# Define your "new document" handlers here.
|
||||||
|
@ -2,6 +2,15 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## [4.7.3.2] - 2018-05-16
|
||||||
|
### Fixed
|
||||||
|
- Forgot to increase the version number :(.
|
||||||
|
|
||||||
|
|
||||||
|
## [4.7.3.1] - 2018-05-14
|
||||||
|
### Fixed
|
||||||
|
- Fixed a critical bug where the rules-engine would fire inadvertently.
|
||||||
|
|
||||||
## [4.7.3] - 2018-04-29
|
## [4.7.3] - 2018-04-29
|
||||||
### Added
|
### Added
|
||||||
- Currency added to API
|
- Currency added to API
|
||||||
|
@ -88,7 +88,7 @@ return [
|
|||||||
'is_demo_site' => false,
|
'is_demo_site' => false,
|
||||||
],
|
],
|
||||||
'encryption' => null === env('USE_ENCRYPTION') || env('USE_ENCRYPTION') === true,
|
'encryption' => null === env('USE_ENCRYPTION') || env('USE_ENCRYPTION') === true,
|
||||||
'version' => '4.7.3',
|
'version' => '4.7.3.2',
|
||||||
'api_version' => '0.3',
|
'api_version' => '0.3',
|
||||||
'db_version' => 3,
|
'db_version' => 3,
|
||||||
'maxUploadSize' => 15242880,
|
'maxUploadSize' => 15242880,
|
||||||
|
Loading…
Reference in New Issue
Block a user