-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[new release] grace (0.2.0) #25956
[new release] grace (0.2.0) #25956
Conversation
Hi! :) Expect tests are failing of OCaml 5.2:
The expected output looks great, btw! Do you think you'll be able to get 5.2 compatibility? |
Seems like a breaking change in |
CHANGES: * fix(renderer): remove uncessary underlines when printing a unique 'multi-line `Top` marker' ([johnyob/grace#31](johnyob/grace#31)) * fix(renderer): replace unicode chars with ASCII in `Config.ascii` ([johnyob/grace#27](johnyob/grace#27)) * feat(renderer): add `NO_COLOR` and `TERM` support to `Config` ([johnyob/grace#8](johnyob/grace#8)) * feat(core,renderer): add support for error codes ([johnyob/grace#30](johnyob/grace#30)) * feat(renderer): add support for UTF8 encoding 🚀 ([johnyob/grace#25](johnyob/grace#25)) * feat(renderer): re-introduce support for compact diagnostic rendering ([johnyob/grace#28](johnyob/grace#28)) * refactor(renderer)!: move `grace.renderer` library to `grace.ansi_renderer` ([johnyob/grace#29](johnyob/grace#29)) ### BREAKING CHANGE * `Grace_rendering` has been removed. Use `Grace_ansi_renderer` instead.
4b5bfc7
to
0bf0d22
Compare
I've re-released (with a green run on my own CI (which now tests OCaml 5.2) https://github.com/johnyob/grace/actions/runs/9308056494). Hopefully this should pass opam-ci 🤞 |
@shonfeder seems like CI failed due to issues with bin_prot, any ideas? |
Here are the errors, for reference: On OpenSUSE with OCaml 5.2 we have
And on FreeBSD with OCaml 5.2
|
You're inheriting I've reported the issue with This LGTM and I'm recommending it for merge. Thanks :) |
The issue is indeed independent of this. Thanks! |
A fancy diagnostics library that allows your compilers to exit with grace
CHANGES:
Top
marker' (johnyob/grace#31)Config.ascii
(johnyob/grace#27)NO_COLOR
andTERM
support toConfig
(johnyob/grace#8)grace.renderer
library tograce.ansi_renderer
(johnyob/grace#29)BREAKING CHANGE
Grace_rendering
has been removed. UseGrace_ansi_renderer
instead.