this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[new release] grace (0.2.0)

CHANGES:

* fix(renderer): remove uncessary underlines when printing a unique 'multi-line `Top` marker' ([johnyob/grace#31](https://github.com/johnyob/grace/pull/31))
* fix(renderer): replace unicode chars with ASCII in `Config.ascii` ([johnyob/grace#27](https://github.com/johnyob/grace/pull/27))
* feat(renderer): add `NO_COLOR` and `TERM` support to `Config` ([johnyob/grace#8](https://github.com/johnyob/grace/pull/8))
* feat(core,renderer): add support for error codes ([johnyob/grace#30](https://github.com/johnyob/grace/pull/30))
* feat(renderer): add support for UTF8 encoding 🚀 ([johnyob/grace#25](https://github.com/johnyob/grace/pull/25))
* feat(renderer): re-introduce support for compact diagnostic rendering ([johnyob/grace#28](https://github.com/johnyob/grace/pull/28))
* refactor(renderer)!: move `grace.renderer` library to `grace.ansi_renderer` ([johnyob/grace#29](https://github.com/johnyob/grace/pull/29))

### BREAKING CHANGE

* `Grace_rendering` has been removed. Use `Grace_ansi_renderer` instead.

johnyob 0bf0d22a b502ec76

+45
+45
packages/grace/grace.0.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: 3 + "A fancy diagnostics library that allows your compilers to exit with grace" 4 + maintainer: ["alistair.obrien@trili.tech"] 5 + authors: ["Alistair O'Brien"] 6 + license: "MIT" 7 + homepage: "https://github.com/johnyob/grace" 8 + bug-reports: "https://github.com/johnyob/grace/issues" 9 + depends: [ 10 + "ocaml" {>= "4.14.0"} 11 + "dune" {>= "3.4"} 12 + "core" 13 + "ppx_jane" 14 + "fmt" {>= "0.8.7"} 15 + "dedent" 16 + "iter" 17 + "core_unix" 18 + "uutf" 19 + "ppx_optcomp" 20 + "odoc" {with-doc} 21 + ] 22 + build: [ 23 + ["dune" "subst"] {dev} 24 + [ 25 + "dune" 26 + "build" 27 + "-p" 28 + name 29 + "-j" 30 + jobs 31 + "@install" 32 + "@runtest" {with-test} 33 + "@doc" {with-doc} 34 + ] 35 + ] 36 + dev-repo: "git+https://github.com/johnyob/grace.git" 37 + url { 38 + src: 39 + "https://github.com/johnyob/grace/releases/download/0.2.0/grace-0.2.0.tbz" 40 + checksum: [ 41 + "sha256=821df54882c9253eac69f47bcf3a71ffdc61c77fdae42587c32aada5b56cfeae" 42 + "sha512=007afa83251da3ddecd874e120ea89dce0253c387a64a5fece69069d3486ec5eb6c82d6bf0febaf23dd322bd9eaadc2f7882e33f05a2e1fa18a41294e7dc3ba1" 43 + ] 44 + } 45 + x-commit-hash: "d15a6d7d07a2551d1a9934fa79c2cf84c918f990"