Skip to content

Commit 08994b9

Browse files
committed
Cleanup and version bump
1 parent 46e6d92 commit 08994b9

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,8 @@ jobs:
124124
dot -c
125125
126126
choco install --yes --no-progress gnuplot
127-
#refreshenv
128-
#gnuplot --version
129127
130128
choco install --yes --no-progress asymptote
131-
#refreshenv
132-
#asy -version
133-
#asy -environment
134129
135130
choco install --yes --no-progress plantuml
136131
plantuml -h

CHANGELOG.md

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

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

5+
## Release 1.8.0
6+
7+
* Added support for [Asymptote](https://asymptote.sourceforge.io/), thanks to a contribution by Michał J. Gajda (#61).
8+
59
## Release 1.7.0
610

711
* Added support for the declarative diagram language [D2](https://d2lang.com/), thanks to a contribution by Sanchayan Maity (#60).

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,9 @@ The resulting `output.html` looks like this:
7070
- `bokeh`: plots using the [Bokeh](https://bokeh.org/) visualization library;
7171
- `plotsjl`: plots using the [Julia `Plots.jl`](https://docs.juliaplots.org/latest/) package;
7272
- `plantuml`: diagrams using the [PlantUML](https://plantuml.com/) software suite;
73-
- `sageplot`: plots using the [Sage](https://www.sagemath.org/) software system.
74-
- `d2`: plots using [D2](https://d2lang.com/).
73+
- `sageplot`: plots using the [Sage](https://www.sagemath.org/) software system;
74+
- `d2`: plots using [D2](https://d2lang.com/);
75+
- `asymptote`: plots using [Asymptote](https://asymptote.sourceforge.io/).
7576

7677
To know which toolkits are useable on *your machine* (and which ones are
7778
not available), you can check with the `toolkits` command:

docs/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ plot-configuration: plot-config.yml
3434
- `graphviz`: graphs using [Graphviz](http://graphviz.org/);
3535
- `bokeh`: plots using the [Bokeh](https://bokeh.org/) visualization library;
3636
- `plotsjl`: plots using the [Julia `Plots.jl`](http://docs.juliaplots.org/latest/) package;
37-
- `plantuml`: diagrams using [PlantUML](https://plantuml.com).
37+
- `plantuml`: diagrams using [PlantUML](https://plantuml.com);
38+
- `d2`: plots using [D2](https://d2lang.com/);
39+
- `asymptote`: plots using [Asymptote](https://asymptote.sourceforge.io/).
3840

3941
## Simple examples
4042

pandoc-plot.cabal

Lines changed: 3 additions & 2 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.7.0
3+
version: 1.8.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
@@ -19,7 +19,8 @@ tested-with: GHC == 8.10.4,
1919
GHC == 9.2.1,
2020
GHC == 9.2.2,
2121
GHC == 9.4.4,
22-
GHC == 9.6.1
22+
GHC == 9.6.1,
23+
GHC == 9.6.3
2324
extra-source-files:
2425
CHANGELOG.md
2526
LICENSE

0 commit comments

Comments
 (0)