Release v0.10.1
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 tolocal.toml
s:
local.toml
contents are no longer broken down by packages.
To adjust to the new format, remove thepackage.
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 ofdotter_settings
. To migrate:- Move
dotter_settings
to.dotter
- Change helper paths accordingly (if applicable)
- Change
included.toml
paths accordingly (if applicable) - Adjust
.gitignore
- Move