Skip to content

Commit

Permalink
Merge pull request #2 from vst/release-please--branches--main
Browse files Browse the repository at this point in the history
chore(main): release 0.0.1
  • Loading branch information
vst authored Mar 17, 2024
2 parents a35c126 + fdfe638 commit 1cc432a
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.0"
".": "0.0.1"
}
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
53 changes: 23 additions & 30 deletions package.yaml
Original file line number Diff line number Diff line change
@@ -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: "[email protected]"
copyright: "Copyright (c) 2024 Vehbi Sinan Tunalioglu"

author: Vehbi Sinan Tunalioglu
maintainer: [email protected]
copyright: Copyright (c) 2024 Vehbi Sinan Tunalioglu
extra-source-files:
- README.md
- CHANGELOG.md

description: Please see the README on GitHub at <https://github.com/vst/lhp#readme>

dependencies:
- base >= 4.7 && < 5

library:
source-dirs: src
ghc-options:
- -Wall
- -Werror
- -Wunused-packages
- '-Wall'
- '-Werror'
- '-Wunused-packages'
dependencies:
- aeson
- aeson-combinators
Expand All @@ -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

0 comments on commit 1cc432a

Please sign in to comment.