Skip to content

Commit 27bec5b

Browse files
committed
Prepare release 1.0.2.1
1 parent e03a7d2 commit 27bec5b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
Release 1.0.3.0
5+
Release 1.0.2.1
66
---------------
77

88
* `pandoc-plot` will now only render at most `N` figures in parallel, where `N` is the number of available CPU cores.

pandoc-plot.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: pandoc-plot
3-
version: 1.0.3.0
3+
version: 1.0.2.1
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

src/Text/Pandoc/Filter/Plot.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@ module Text.Pandoc.Filter.Plot
109109
)
110110
where
111111

112+
import Control.Concurrent (getNumCapabilities)
112113
import Data.Functor ((<&>))
113114
import Data.Text (Text, pack, unpack)
114115
import Data.Version (Version)
115-
import Control.Concurrent (getNumCapabilities)
116116
import Paths_pandoc_plot (version)
117117
import Text.Pandoc.Definition (Block, Pandoc (..))
118118
import Text.Pandoc.Filter.Plot.Internal

0 commit comments

Comments
 (0)