Skip to content

Commit

Permalink
prepare 0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
juhp committed May 18, 2022
1 parent c141e2d commit 94671b7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Version history for simple-cmd

## 0.2.6 (2022-05-18)
- timeIO: print the duration in hours and minutes, not just seconds

## 0.2.5 (2022-04-24)
- cmdN: quote arguments with show
- add timeIO: runs action and prints the time it took
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Other examples:
gitBranch :: IO String
grep_ pat file :: IO Bool
sudo_ c args :: IO ()
timeIO :: IO a -> IO a
```

See the library documentation for more details.
9 changes: 4 additions & 5 deletions simple-cmd.cabal
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: simple-cmd
version: 0.2.5
version: 0.2.6
synopsis: Simple String-based process commands
description:
Simple wrappers over System.Process
(readProcess, readProcessWithExitCode, rawSystem, and createProcess).
The idea is to provide some common idioms for calling out to commands
from programs. For more advanced shell-scripting or streaming
use turtle, shelly, command, etc.
use turtle, shelly, shake, etc.
license: BSD3
license-file: LICENSE
author: Jens Petersen <[email protected]>
Expand All @@ -18,9 +18,8 @@ bug-reports: https://github.com/juhp/simple-cmd/issues
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md ChangeLog.md TODO
tested-with: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3,
GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5,
GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2
tested-with: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4,
GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2

source-repository head
type: git
Expand Down

0 comments on commit 94671b7

Please sign in to comment.