From 9d51f8c23a9e133818b9dac51c2e414d7f58f744 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Apr 2024 14:23:49 +0000 Subject: [PATCH] chore(main): release 0.0.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 17 +++++++++++ package.yaml | 53 +++++++++++++++-------------------- 3 files changed, 41 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..b969eb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package.yaml b/package.yaml index 2cf8a63..b012158 100644 --- a/package.yaml +++ b/package.yaml @@ -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: "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 - 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