cynic-parser-v0.4.0
cynic-releaser
released this
22 May 18:48
·
118 commits
to main
since this release
Breaking Changes
- Pretty printing has been moved behind a new feature flag
pretty
- The names of the pretty printing functions have been updated with a
_pretty
prefix.
New Features
- All of the readers in the executable module now impl Display, allowing you
to use them withprint!
and friends. This is hidden behind theprint
feature. (#962) - All of the
Id
types now implHash
,PartialEq
,Eq
&Debug
(#961) - All of the readers now have an
id
function that allows you to retreive an
Id
for that reader. (#959) Iter
now exposes a functionids
that allows you to retrieve the underlying
IdRange
(#959)
Bug Fixes
- Fixed a lot of bad formatting in the pretty printing of schema documents
(#957) - Pretty printing will now add whitespace between fields & arguments that have
a docstring (#954)
Changes
- update rust crate logos to 0.14 (#942)