Skip to content

Commit

Permalink
Cleanup and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentRDC committed Oct 25, 2023
1 parent 46e6d92 commit 08994b9
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 3 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
5 changes: 3 additions & 2 deletions pandoc-plot.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down

0 comments on commit 08994b9

Please sign in to comment.