Releases: jcornaz/beancount-parser
Releases · jcornaz/beancount-parser
v1.0.0-alpha.4
1.0.0-alpha.4 (2022-09-21)
⚠ BREAKING CHANGES
Transaction::postings
now returns a slice instead of aVec
.
This is to hide the internal collection type, so it may be changed in the future
without breaking the API.
refactor
- make
Transaction::postings
return a slice instead of aVec
(17f0795)
Documentation
- Minor simplification of the root crate example (2b42c5d)
v1.0.0-alpha.3
1.0.0-alpha.3 (2022-09-16)
⚠ BREAKING CHANGES
- The type of item returned by the
Parser
iterator
has changed fromResult<(Date, Directive), Error>
toResult<Directive, Error>
.
This is because not all directives have a date. So this change will make possible to support
more directives in the future without breaking the API.
Features
- Include date on
Transaction
type (743c136)
Refactor
- Iterate directives instead of date-directive tuples (3391822)