-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Instead of an `[Inventory]` section, the TOML format now has to start with a comment line that declares the format version. The header fields `project` and `version` are now top-level keys. This looks cleaner, saves a few bytes, and introduces unique "magic bytes" at the beginning of the file so that an `inventory.toml` file could be recognized as a distinct fromat by FileIO.jl. Also, `version` is now optional. Most previous (experimental) `inventory.toml` files can still be read without error.
- Loading branch information
Showing
7 changed files
with
196 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[default] | ||
extend-ignore-identifiers-re = [ | ||
"[A-Z]T", | ||
"[0-9abcdef]{8}", | ||
"[A-Z][a-z]+[A-Z]{2,5}[0-9]{4}", | ||
] | ||
|
||
[files] | ||
extend-exclude = ["*.bib", "*.toml", "test_inventory.jl"] |
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
[Inventory] | ||
format = "DocInventories v0" | ||
# DocInventory version 0 | ||
project = "Documenter.jl" | ||
version = "1.2.1" | ||
|
||
|
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
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