stackctl 1.7.2.0 → 1.7.3.0
raw patch · 3 files changed
+15/−2 lines, 3 files
Files
- README.md +13/−0
- stackctl.cabal +1/−1
- test/Stackctl/CancelHandlerSpec.hs +1/−1
README.md view
@@ -77,6 +77,19 @@ The man pages are also available [online](https://freckle.github.io/stackctl/), but contain documentation as of `main`, and not your installed version. +## Release++To trigger a release in this project, merge a commit to `main` with a+conventionally-formatted commit message. In short, one that starts with:++1. `fix:` to trigger a patch release,+1. `feat:` for minor, or+1. `feat!:` for major++Conventional commits are not required generally for this project, though you're+free to always use them. They are only required when you want to trigger a+release.+ ## Comparison to AWS CloudFormation Git Sync [AWS CloudFormation Git Sync][aws-git-sync] was recently released by AWS. It
stackctl.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: stackctl-version: 1.7.2.0+version: 1.7.3.0 license: MIT license-file: LICENSE copyright: 2022 Renaissance Learning Inc
test/Stackctl/CancelHandlerSpec.hs view
@@ -10,7 +10,7 @@ spec :: Spec spec = do describe "with" $ do- fit "installs a handler for the duration of a block" $ example $ do+ it "installs a handler for the duration of a block" $ example $ do done <- newEmptyMVar CancelHandler.install $ putMVar done ()