From fdfe638fc4ea28bea89e4c1e0e143f0c3b582b52 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Mar 2024 08:38:36 +0000 Subject: [PATCH] chore(main): release 0.0.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 ++++++ package.yaml | 53 +++++++++++++++-------------------- 3 files changed, 33 insertions(+), 31 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e18ee07..b985ff6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.0" + ".": "0.0.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 825c32f..64d3524 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.0.1 (2024-03-17) + + +### Features + +* **cli:** add report and schema CLI subcommands ([888f2b1](https://github.com/vst/lhp/commit/888f2b11d9d3f686cfad5e6d69b71e02e22f8737)) + +## Changelog diff --git a/package.yaml b/package.yaml index 4bb1051..32d3a6c 100644 --- a/package.yaml +++ b/package.yaml @@ -1,26 +1,22 @@ name: lhp -version: 0.0.0 -github: "vst/lhp" +version: 0.0.1 +github: vst/lhp license: MIT -author: "Vehbi Sinan Tunalioglu" -maintainer: "vst@vsthost.com" -copyright: "Copyright (c) 2024 Vehbi Sinan Tunalioglu" - +author: Vehbi Sinan Tunalioglu +maintainer: vst@vsthost.com +copyright: Copyright (c) 2024 Vehbi Sinan Tunalioglu extra-source-files: - README.md - CHANGELOG.md - description: Please see the README on GitHub at - dependencies: - base >= 4.7 && < 5 - library: source-dirs: src ghc-options: - - -Wall - - -Werror - - -Wunused-packages + - '-Wall' + - '-Werror' + - '-Wunused-packages' dependencies: - aeson - aeson-combinators @@ -36,41 +32,38 @@ library: - text - time - typed-process - executables: lhp: main: Main.hs source-dirs: app ghc-options: - - -Wall - - -Werror - - -Wunused-packages - - -threaded - - -rtsopts - - -with-rtsopts=-N + - '-Wall' + - '-Werror' + - '-Wunused-packages' + - '-threaded' + - '-rtsopts' + - '-with-rtsopts=-N' dependencies: - lhp - tests: lhp-test: main: Spec.hs source-dirs: test/spec ghc-options: - - -Wall - - -Werror - - -Wunused-packages - - -threaded - - -rtsopts - - -with-rtsopts=-N + - '-Wall' + - '-Werror' + - '-Wunused-packages' + - '-threaded' + - '-rtsopts' + - '-with-rtsopts=-N' dependencies: [] - lhp-doctest: main: doctest.hs source-dirs: test/doctest ghc-options: - - -Wall - - -Werror - - -threaded + - '-Wall' + - '-Werror' + - '-threaded' dependencies: - lhp - doctest