Skip to content

Release v0.10.1

Compare
Choose a tag to compare
@SuperCuber SuperCuber released this 26 Nov 20:52
· 332 commits to master since this release

BREAKING Changes:

  • Dotter now supports including files in local.toml - read more about it in the wiki and the issue, together with a breaking change to local.tomls:
    local.toml contents are no longer broken down by packages.
    To adjust to the new format, remove the package. from [package.files] and [package.variables], then merge all [files] and [variables] sections.
    For example, before:
packages = ["package1", "package2"]
[package1.files]
file1 = "target1"

[package1.variables]
variable1 = "value1"

[package2.files]
file2 = "target2"

after:

packages = ["package1", "package2"]

[files]
file1 = "target1"
file2 = "target2"

[variables]
variable1 = "value1"
  • Default configuration directory is now .dotter instead of dotter_settings. To migrate:
    • Move dotter_settings to .dotter
    • Change helper paths accordingly (if applicable)
    • Change included.toml paths accordingly (if applicable)
    • Adjust .gitignore