From 4b5bfc7ad67943c925654bfc9ae2f5eae4b0c423 Mon Sep 17 00:00:00 2001 From: johnyob Date: Tue, 28 May 2024 21:38:32 +0100 Subject: [PATCH] [new release] grace (0.2.0) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- packages/grace/grace.0.2.0/opam | 43 +++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 packages/grace/grace.0.2.0/opam diff --git a/packages/grace/grace.0.2.0/opam b/packages/grace/grace.0.2.0/opam new file mode 100644 index 000000000000..308decd56393 --- /dev/null +++ b/packages/grace/grace.0.2.0/opam @@ -0,0 +1,43 @@ +opam-version: "2.0" +synopsis: + "A fancy diagnostics library that allows your compilers to exit with grace" +maintainer: ["alistair.obrien@trili.tech"] +authors: ["Alistair O'Brien"] +license: "MIT" +homepage: "https://github.com/johnyob/grace" +bug-reports: "https://github.com/johnyob/grace/issues" +depends: [ + "dune" {>= "3.4"} + "core" + "ppx_jane" + "fmt" {>= "0.8.7"} + "dedent" + "iter" + "core_unix" + "uutf" + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://github.com/johnyob/grace.git" +url { + src: + "https://github.com/johnyob/grace/releases/download/0.2.0/grace-0.2.0.tbz" + checksum: [ + "sha256=634b2a09c48fad80c00b3a94769cbfcfb2947f5ac883c1e53a1d8f05f3de495e" + "sha512=d1711cc8d59309398767796689c469fe904a70c807da072fd18c6913580c07ffe52ab1a887bcefc945e2efd8327174289e13ea0e7925de2d854f2307e173c881" + ] +} +x-commit-hash: "26ef98bf85b42f51ac4dd10ca573a8643e717c5b"