summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent René de Cotret <l.rdc@socivolta.com>2023-06-01 09:58:41 -0400
committerLaurent René de Cotret <l.rdc@socivolta.com>2023-06-01 09:58:41 -0400
commitdf70803ee084a80d10fd113227164d8eb37e64dc (patch)
treeff3b7defbd91358147add9a32d673be71e4fd807
parentd2c577b8c5fe51fcaf779fc03925024a0e24cae8 (diff)
Preparation for v1.7.0 release1.7.0
-rw-r--r--CHANGELOG.md5
-rw-r--r--pandoc-plot.cabal16
2 files changed, 14 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1c84c68..083659d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,11 @@
pandoc-plot uses [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
+## Release 1.7.0
+
+* Added support for the declarative diagram language [D2](https://d2lang.com/), thanks to a contribution by Sanchayan Maity (#60).
+* Added support for `optparse-applicative` v0.18.
+
## Release 1.6.2
* Fixed some imports which were removed in `mtl-2.3`.
diff --git a/pandoc-plot.cabal b/pandoc-plot.cabal
index d2a376e..da5052f 100644
--- a/pandoc-plot.cabal
+++ b/pandoc-plot.cabal
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: pandoc-plot
-version: 1.6.2
+version: 1.7.0
synopsis: A Pandoc filter to include figures generated from code blocks using your plotting toolkit of choice.
description: A Pandoc filter to include figures generated from code blocks.
Keep the document and code in the same location. Output is
@@ -48,6 +48,8 @@ extra-source-files:
tests/includes/plotly-r.r
tests/includes/plotsjl.jl
tests/includes/plantuml.txt
+ tests/includes/sagemath.sage
+ tests/includes/d2-dd.d2
source-repository head
type: git
@@ -99,8 +101,8 @@ library
-Wmissing-export-lists
-Wpartial-fields
build-depends:
- aeson >= 2 && <3
- , base >= 4.11 && <5
+ aeson >= 2 && < 3
+ , base >= 4.11 && < 5
, bytestring
, containers
, data-default
@@ -141,8 +143,8 @@ executable pandoc-plot
, optparse-applicative >= 0.14 && < 0.19
, pandoc
, pandoc-plot
- , pandoc-types >= 1.21 && <2
- , template-haskell > 2.7 && <3
+ , pandoc-types >= 1.21 && < 2
+ , template-haskell > 2.7 && < 3
, typed-process
, text
default-language: Haskell2010
@@ -152,12 +154,12 @@ test-suite tests
hs-source-dirs: tests
main-is: Main.hs
other-modules: Common
- build-depends: base >= 4.11 && < 5
+ build-depends: base
, containers
, directory
, filepath
, hspec-expectations
- , pandoc-types >= 1.20 && <= 2
+ , pandoc-types
, pandoc-plot
, tasty
, tasty-hunit