Skip to content

Commit

Permalink
Merge pull request #6 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 committed Jan 9, 2024
2 parents 764dc6b + b912c34 commit 74923b6
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-01-09)


### Features

* implement initial functionality ([bd1424b](https://github.com/vst/opsops/commit/bd1424ba34d7bc92a302ce5c54b6ab5f5a001a0e))

## Changelog
53 changes: 23 additions & 30 deletions package.yaml
Original file line number Diff line number Diff line change
@@ -1,26 +1,22 @@
name: opsops
version: 0.0.0
github: "vst/opsops"
version: 0.0.1
github: vst/opsops
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 <https://github.com/vst/opsops#readme>

dependencies:
- base >= 4.7 && < 5

library:
source-dirs: src
ghc-options:
- -Wall
- -Werror
- -Wunused-packages
- '-Wall'
- '-Werror'
- '-Wunused-packages'
dependencies:
- aeson
- bytestring
Expand All @@ -33,41 +29,38 @@ library:
- text
- typed-process
- yaml

executables:
opsops:
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:
- opsops

tests:
opsops-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: []

opsops-doctest:
main: doctest.hs
source-dirs: test/doctest
ghc-options:
- -Wall
- -Werror
- -threaded
- '-Wall'
- '-Werror'
- '-threaded'
dependencies:
- opsops
- doctest

0 comments on commit 74923b6

Please sign in to comment.