generated from vst/haskell-template-hebele
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60675ff
commit 9d51f8c
Showing
3 changed files
with
41 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
".": "0.0.0" | ||
".": "0.0.1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,18 @@ | ||
# Changelog | ||
|
||
## 0.0.1 (2024-04-26) | ||
|
||
|
||
### Features | ||
|
||
* add `config print` subcommand ([839ee49](https://github.com/vst/clompse/commit/839ee4924070ab73a341d93d7c36d2cfaa0a484c)) | ||
* add list command to dump servers as per given configuration ([ed4b056](https://github.com/vst/clompse/commit/ed4b056fd3c90eb5336b8d164857b05a902cd51e)) | ||
* implement configuration model, add `config schema` subcommand ([7228856](https://github.com/vst/clompse/commit/722885616f741739cfbbc7da6aa2249b76e422f3)) | ||
* init codebase ([0404745](https://github.com/vst/clompse/commit/0404745be2eba55a2135fa9b7839b15eb06bf248)) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* allow multiple cloud provider connections per profile ([1c8daac](https://github.com/vst/clompse/commit/1c8daac4a25e567d9712116ad846555643f72ca6)) | ||
|
||
## Changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,22 @@ | ||
name: clompse | ||
version: 0.0.0 | ||
github: "vst/clompse" | ||
version: 0.0.1 | ||
github: vst/clompse | ||
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/clompse#readme> | ||
|
||
dependencies: | ||
- base >= 4.7 && < 5 | ||
|
||
library: | ||
source-dirs: src | ||
ghc-options: | ||
- -Wall | ||
- -Werror | ||
- -Wunused-packages | ||
- '-Wall' | ||
- '-Werror' | ||
- '-Wunused-packages' | ||
dependencies: | ||
- aeson | ||
- amazonka | ||
|
@@ -45,41 +41,38 @@ library: | |
- typed-process | ||
- unordered-containers | ||
- yaml | ||
|
||
executables: | ||
clompse: | ||
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: | ||
- clompse | ||
|
||
tests: | ||
clompse-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: [] | ||
|
||
clompse-doctest: | ||
main: doctest.hs | ||
source-dirs: test/doctest | ||
ghc-options: | ||
- -Wall | ||
- -Werror | ||
- -threaded | ||
- '-Wall' | ||
- '-Werror' | ||
- '-threaded' | ||
dependencies: | ||
- clompse | ||
- doctest |