1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-19 13:54:25 +01:00

Add intermediate step version for upgrades: v4.4.6

This will prevent issues with FootprintDebug if a regeneration is needed, especially with 20200511075933_fix_accounting_periods.rb
This commit is contained in:
Sylvain 2020-10-23 11:56:21 +02:00
parent c87adde6f6
commit af8c7c21b4
3 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,6 @@
# Changelog Fab-manager
- Add intermediate step version for upgrades: v4.4.6. This will prevent issues with FootprintDebug if a regeneration is needed
- Fix a bug: unable to set libraries locales to their default values (en-us)
## v4.6.1 2020 October 21

View File

@ -157,7 +157,7 @@ Then, you'll need to perform the upgrade with the following command:
*This procedure updates Fab-manager to the most recent version by default.*
> ⚠ If you are upgrading from a very outdated version, you must first upgrade to v2.8.3, then to v3.1.2, then to 4.0.4 and finally to the last version
> ⚠ If you are upgrading from a very outdated version, you must first upgrade to v2.8.3, then to v3.1.2, then to 4.0.4, then to 4.4.6 and finally to the last version
> ⚠ With versions < 4.3.3, you must replace `bundle exec rails` with `bundle exec rake` in all the commands above

View File

@ -86,6 +86,8 @@ version_check()
version_error "v3.1.2"
elif verlt "$VERSION" 4.0.4; then
version_error "v4.0.4"
elif verlt "$VERSION" 4.4.6; then
version_error "v4.4.6"
fi
}