summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent P. René de Cotret <laurent.decotret@outlook.com>2023-10-25 09:27:48 -0400
committerLaurent P. René de Cotret <laurent.decotret@outlook.com>2023-10-25 09:27:48 -0400
commit08994b92a0a3e6dcb2a2135cc62879dc7a566bce (patch)
treea4daf5fdd6b75bd354a2c3afc02928948d7a4664
parent46e6d920db1a9393adaa9eb79cb57ecac96b0e3a (diff)
Cleanup and version bump1.8.0
-rw-r--r--.github/workflows/ci.yml5
-rw-r--r--CHANGELOG.md4
-rw-r--r--README.md5
-rw-r--r--docs/index.md4
-rw-r--r--pandoc-plot.cabal5
5 files changed, 13 insertions, 10 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c67e5ef..5b22d48 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -124,13 +124,8 @@ jobs:
dot -c
choco install --yes --no-progress gnuplot
- #refreshenv
- #gnuplot --version
choco install --yes --no-progress asymptote
- #refreshenv
- #asy -version
- #asy -environment
choco install --yes --no-progress plantuml
plantuml -h
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 083659d..2e1adda 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
pandoc-plot uses [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
+## Release 1.8.0
+
+* Added support for [Asymptote](https://asymptote.sourceforge.io/), thanks to a contribution by Michał J. Gajda (#61).
+
## Release 1.7.0
* Added support for the declarative diagram language [D2](https://d2lang.com/), thanks to a contribution by Sanchayan Maity (#60).
diff --git a/README.md b/README.md
index 05cc9d3..c2d45e2 100644
--- a/README.md
+++ b/README.md
@@ -70,8 +70,9 @@ The resulting `output.html` looks like this:
- `bokeh`: plots using the [Bokeh](https://bokeh.org/) visualization library;
- `plotsjl`: plots using the [Julia `Plots.jl`](https://docs.juliaplots.org/latest/) package;
- `plantuml`: diagrams using the [PlantUML](https://plantuml.com/) software suite;
- - `sageplot`: plots using the [Sage](https://www.sagemath.org/) software system.
- - `d2`: plots using [D2](https://d2lang.com/).
+ - `sageplot`: plots using the [Sage](https://www.sagemath.org/) software system;
+ - `d2`: plots using [D2](https://d2lang.com/);
+ - `asymptote`: plots using [Asymptote](https://asymptote.sourceforge.io/).
To know which toolkits are useable on *your machine* (and which ones are
not available), you can check with the `toolkits` command:
diff --git a/docs/index.md b/docs/index.md
index 5fa7616..9fb74bf 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -34,7 +34,9 @@ plot-configuration: plot-config.yml
- `graphviz`: graphs using [Graphviz](http://graphviz.org/);
- `bokeh`: plots using the [Bokeh](https://bokeh.org/) visualization library;
- `plotsjl`: plots using the [Julia `Plots.jl`](http://docs.juliaplots.org/latest/) package;
- - `plantuml`: diagrams using [PlantUML](https://plantuml.com).
+ - `plantuml`: diagrams using [PlantUML](https://plantuml.com);
+ - `d2`: plots using [D2](https://d2lang.com/);
+ - `asymptote`: plots using [Asymptote](https://asymptote.sourceforge.io/).
## Simple examples
diff --git a/pandoc-plot.cabal b/pandoc-plot.cabal
index 5e9af62..f6ed546 100644
--- a/pandoc-plot.cabal
+++ b/pandoc-plot.cabal
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: pandoc-plot
-version: 1.7.0
+version: 1.8.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
@@ -19,7 +19,8 @@ tested-with: GHC == 8.10.4,
GHC == 9.2.1,
GHC == 9.2.2,
GHC == 9.4.4,
- GHC == 9.6.1
+ GHC == 9.6.1,
+ GHC == 9.6.3
extra-source-files:
CHANGELOG.md
LICENSE