Skip to content

Commit df70803

Browse files
committed
Preparation for v1.7.0 release
1 parent d2c577b commit df70803

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
pandoc-plot uses [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
44

5+
## Release 1.7.0
6+
7+
* Added support for the declarative diagram language [D2](https://d2lang.com/), thanks to a contribution by Sanchayan Maity (#60).
8+
* Added support for `optparse-applicative` v0.18.
9+
510
## Release 1.6.2
611

712
* Fixed some imports which were removed in `mtl-2.3`.

pandoc-plot.cabal

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: pandoc-plot
3-
version: 1.6.2
3+
version: 1.7.0
44
synopsis: A Pandoc filter to include figures generated from code blocks using your plotting toolkit of choice.
55
description: A Pandoc filter to include figures generated from code blocks.
66
Keep the document and code in the same location. Output is
@@ -48,6 +48,8 @@ extra-source-files:
4848
tests/includes/plotly-r.r
4949
tests/includes/plotsjl.jl
5050
tests/includes/plantuml.txt
51+
tests/includes/sagemath.sage
52+
tests/includes/d2-dd.d2
5153

5254
source-repository head
5355
type: git
@@ -99,8 +101,8 @@ library
99101
-Wmissing-export-lists
100102
-Wpartial-fields
101103
build-depends:
102-
aeson >= 2 && <3
103-
, base >= 4.11 && <5
104+
aeson >= 2 && < 3
105+
, base >= 4.11 && < 5
104106
, bytestring
105107
, containers
106108
, data-default
@@ -141,8 +143,8 @@ executable pandoc-plot
141143
, optparse-applicative >= 0.14 && < 0.19
142144
, pandoc
143145
, pandoc-plot
144-
, pandoc-types >= 1.21 && <2
145-
, template-haskell > 2.7 && <3
146+
, pandoc-types >= 1.21 && < 2
147+
, template-haskell > 2.7 && < 3
146148
, typed-process
147149
, text
148150
default-language: Haskell2010
@@ -152,12 +154,12 @@ test-suite tests
152154
hs-source-dirs: tests
153155
main-is: Main.hs
154156
other-modules: Common
155-
build-depends: base >= 4.11 && < 5
157+
build-depends: base
156158
, containers
157159
, directory
158160
, filepath
159161
, hspec-expectations
160-
, pandoc-types >= 1.20 && <= 2
162+
, pandoc-types
161163
, pandoc-plot
162164
, tasty
163165
, tasty-hunit

0 commit comments

Comments
 (0)