-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add breaking changes documentation
Signed-off-by: simonsan <[email protected]>
- Loading branch information
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Breaking Changes | ||
|
||
This document lists all user facing breaking changes in `rustic` and provides | ||
guidance on how to migrate from one version to another. | ||
|
||
## 0.9.0 | ||
|
||
### Configuration File | ||
|
||
Consistently apply singular and plural naming conventions for keys in the | ||
configuration file that accept an array of values. This change affects the | ||
following keys: | ||
|
||
- glob -> globs | ||
- iglob -> iglobs | ||
- glob_file -> glob_files | ||
- iglob_file -> iglob_files | ||
- custom_ignorefile -> custom_ignorefiles | ||
- tag -> tags | ||
|
||
You need to update your configuration file accordingly, changing the key names | ||
from singular to plural. |