hsshellscript 3.6.0 → 3.6.1
raw patch · 3 files changed
+15/−12 lines, 3 filesdep ~base
Dependency ranges changed: base
Files
- CHANGELOG.md +4/−0
- README.md +4/−6
- hsshellscript.cabal +7/−6
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for HsShellScript +## 3.6.1 -- 2024-03-30++* Fixed a cabal dependency problem.+ ## 3.6.0 -- 2024-03-28 * First version using the latest Cabal infrastructure.
README.md view
@@ -3,6 +3,9 @@ This is HsShellScript, a library which enables you to use Haskell for tasks which are typically done by shell scripts. It requires the Glasgow Haskell Compiler. +More elaborate information can be found on the +[HsShellScript Homepage](https://volker-wysk.de/hsshellscript/).+ ## Installation and Usage Cabal is being used. You can just import the parts of HsShellScript and build your program with cabal.@@ -15,12 +18,7 @@ ## License HsShellScript is released under the terms of the GNU Lesser General Public License-(LGPL), version 2.1, or any later version. A copy of the license is included in-the user manual.--## Home--The (outdated, at the moment) homepage is at http://www.volker-wysk.de/hsshellscript.+(LGPL), version 2.1, or any later version. ## Author
hsshellscript.cabal view
@@ -20,17 +20,17 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 3.6.0+version: 3.6.1 -- A short (one-line) description of the package. synopsis: Using Haskell for Unix shell scripting tasks Description: A Haskell-library for tasks which are usually done in shell scripts. This includes parsing command line- arguments; dealing with paths; some commands for dealing- with files; calling external programs and subroutines as- separate processes; pipes and redirection of input and- output; and error handling.+ arguments, dealing with paths, some commands for dealing+ with files, calling external programs and subroutines as+ separate processes, pipes and redirection of input and+ output and error handling. Homepage: http://www.volker-wysk.de/hsshellscript/ @@ -83,7 +83,8 @@ ScopedTypeVariables, NamedFieldPuns, StandaloneDeriving- Build-depends: base ^>=4.13.0.0,+-- Build-depends: base ^>= 4.13.0.0,+ Build-depends: base >= 4.13.0 && < 4.14, directory >= 1.3.6 && < 1.4, unix >= 2.7.2 && < 2.8, parsec >= 3.1.14 && < 3.2,