Skip to content

Commit

Permalink
Merge pull request #8 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 Apr 26, 2024
2 parents 60675ff + 9d51f8c commit c6093fd
Show file tree
Hide file tree
Showing 3 changed files with 41 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"
}
17 changes: 17 additions & 0 deletions CHANGELOG.md
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
53 changes: 23 additions & 30 deletions package.yaml
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
Expand All @@ -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

0 comments on commit c6093fd

Please sign in to comment.