Skip to content

v0.8.1

Compare
Choose a tag to compare
@zchmielewska zchmielewska released this 16 Oct 13:17
· 58 commits to main since this release
887f52d

The default settings have been updated. Now, only the main output file is saved by default, while the log and diagnostic files are disabled. Users can adjust these settings in the configuration file.

After:

settings = {
    # ...
    "SAVE_DIAGNOSTIC": False,
    "SAVE_LOG": False,
    "SAVE_OUTPUT": True,
    # ...
}

Before:

settings = {
    # ...
    "SAVE_DIAGNOSTIC": True,
    "SAVE_LOG": True,
    "SAVE_OUTPUT": True,
    # ...
}

This change focuses on the main output file, as the log and diagnostic files are helpful but not essential for cash flow modelling. By simplifying the default settings, the basic process becomes tidier.