Releases: the-alchemists-of-arland/gray-matter-rs
Releases · the-alchemists-of-arland/gray-matter-rs
v0.2.8
Update by changing your Cargo.toml
dependency section to:
[dependencies]
# ...
gray_matter = "0.2.8"
# ...
Changelog
0.2.8
Miscellaneous
- Replace unmaintained yaml-rust with yaml-rust2. @NathanReus
v0.2.7
Update by changing your Cargo.toml
dependency section to:
[dependencies]
# ...
gray_matter = "0.2.7"
# ...
Changelog
0.2.7
Enhancements
- Support custom delimiters for both open and close. @Jawell
v0.2.6
Update by changing your Cargo.toml
dependency section to:
[dependencies]
# ...
gray_matter = "0.2.6"
# ...
Changelog
Bug fixes
- Incorrect behavior of
pod.is_empty()
. @yuchanns
Miscellaneous
- Add contributor graph.
- Fix Clippy issues.
v0.2.5
Update by changing your Cargo.toml
dependency section to:
[dependencies]
# ...
gray_matter = "0.2.5"
# ...
Changelog
Enhancements
- Support non-string keys in YAML. @dimfeld
v0.2.4
Update by changing your Cargo.toml
dependency section to:
[dependencies]
# ...
gray_matter = "0.2.4"
# ...
Changelog
Bug fixes
- Fixed overeager whitespace trimming. @kmaasrud
v0.2.3
Update by changing your Cargo.toml
dependency section to:
[dependencies]
# ...
gray_matter = "0.2.3"
# ...
Changelog
Enhancements
- Smaller footprint. A few dependencies have been removed, and the in-house YAML and TOML engines are now optional. @kmaasrud
v0.2.2
Update by changing your Cargo.toml
dependency section to:
[dependencies]
# ...
gray_matter = "0.2.2"
# ...
Changelog
Enhancements
- Excerpt delimiter is now allowed to be on the same line with excerpt content. @vjousse
v0.2.1
Update by changing your Cargo.toml
dependency section to:
[dependencies]
# ...
gray_matter = "0.2.1"
# ...
Changelog
Enhancements
- gray-matter is now more strict with delimiters and whitespace on the same line. Previously, whitespace was allowed both before and after the delimiter. Now, you can only have whitespace after the delimiter.
- gray-matter is also less strict with the first delimiter. It does not allow whitespace at the start of the line, but does so at the end (which it did not previously).
Bug fixes
- Fixed a panic that was thrown when two delimiters directly followed eachother.
gray-matter-rs v0.2.0
Apis breaking changes attention !
See the CHANGELOG for more details.
Great thanks to the contribution of @kmaasrud !
First Release
v0.1.0
chore: update workflows