Skip to content

Commit

Permalink
Release diagram v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tarleb committed Oct 1, 2024
1 parent 66476a6 commit f3d69c1
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ The diagram filter is versioned using [Semantic Versioning][].

[Semantic Versioning]: https://semver.org/

## v1.2.0

Released 2024-10-01.

- Added support for CeTZ diagrams that are compiled with Typst.
([Benjamin Abel](https://github.com/benabel))

- Allow arrays as execpaths. It's now possible to set an array as
`execpath` value in the configs in order to add extra
parameters. E.g., PlantUML can be configured with

``` yaml
execpath: ['java', '-jar', '/path/to/plantuml.jar']
```
- Fix filter when used with Quarto.
## v1.1.0
Released 2024-09-17.
Expand Down
2 changes: 1 addition & 1 deletion _extensions/diagram/_extension.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
title: diagram
author: Albert Krewinkel
version: 1.0.0
version: 1.2.0
quarto-required: ">=1.3"
contributes:
filters:
Expand Down
2 changes: 1 addition & 1 deletion _extensions/diagram/diagram.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ See copyright notice in file LICENSE.
-- The filter uses the Figure AST element, which was added in pandoc 3.
PANDOC_VERSION:must_be_at_least '3.0'

local version = pandoc.types.Version '1.1.0'
local version = pandoc.types.Version '1.2.0'

-- Report Lua warnings to stderr if the `warn` function is not plugged into
-- pandoc's logging system.
Expand Down

0 comments on commit f3d69c1

Please sign in to comment.