From ae39b7b87fff9dcb328e6aeb43aca90c06ba3fa0 Mon Sep 17 00:00:00 2001 From: Peter Lebbing Date: Sun, 25 Feb 2024 11:00:13 +0100 Subject: [PATCH] Release 0.7.0.8 --- CHANGELOG.md | 10 +++++++++- docopt.cabal | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 423618f..b7d3f81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ -### 0.7.0.7 (unreleased) +### 0.7.0.8 + +- Add support for `containers-0.7` [#58][#60] + +- Extend Template Haskell Quasi-quotation support to GHC 8.0-8.6. Template + Haskell support is no longer optional. The package now supports all GHC's from + 8.0 to 9.8. [#56][#58] + +### 0.7.0.7 - update bounds, fix warnings, require ghc 8.0+ diff --git a/docopt.cabal b/docopt.cabal index cc5c34f..9f71d7a 100644 --- a/docopt.cabal +++ b/docopt.cabal @@ -1,5 +1,5 @@ name: docopt -version: 0.7.0.7 +version: 0.7.0.8 synopsis: A command-line interface parser that will make you smile description: Docopt parses command-line interface usage text that adheres to a familiar syntax, and from it builds a command-line argument parser that will ensure your program is invoked correctly with the available options specified in the usage text. This allows the developer to write a usage text and get an argument parser for free.