summaryrefslogtreecommitdiff
path: root/NEWS.md
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2023-04-10 13:00:33 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2023-04-10 13:00:33 +0100
commit02a882853a74e870bb616e9bbda7ad7f7d748a30 (patch)
treee17e4ee9ab1f98a32b5db240341970504873394d /NEWS.md
parentd5eeeed20af94c35eb521979d9ea2d99c86735a5 (diff)
downloadsubplot-02a882853a74e870bb616e9bbda7ad7f7d748a30.tar.gz
(release) Prepare 0.7.0 release
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
Diffstat (limited to 'NEWS.md')
-rw-r--r--NEWS.md31
1 files changed, 22 insertions, 9 deletions
diff --git a/NEWS.md b/NEWS.md
index e6785bf..42e10dd 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -4,23 +4,36 @@ This file summarises the changes between released versions of Subplot and its
associated libraries, especially with regards to changes visible to
the user of the Subplot software.
+# Version 0.7.0, released 2023-04-10
+
+- Subplot no longer uses `pandoc` at all. This means that
+ output is currently limited to HTML only, and the formatting
+ of that HTML has changed, however this is the first step
+ along the path of being significantly easier to use long-term.
+- Subplot's MSRV has been updated to 1.63 and our plan is to
+ maintain an MSRV of whatever is in Debian's `testing` distribution
+ until Subplot is in Debian.
+- We have updated our crates to the 2021 edition of Rust. This should
+ not affect anyone since the 2021 edition has been supported since
+ 1.56 of Rust.
+
# Version 0.6.0, released 2022-11-13
-* Subplot metadata now expects `authors` rather than `author`
- to support multiple authors for documents. This is a breaking
+- Subplot metadata now expects `authors` rather than `author`
+ to support multiple authors for documents. This is a breaking
change, hence the semver bump.
-* Subplot metadata now supports a `pandoc` mapping at the top level
+- Subplot metadata now supports a `pandoc` mapping at the top level
which provides metadata to be inserted into the Pandoc document
build when producing PDFs or HTML.
-* There is now a `path` type, to go alongside `text` `word` etc.
+- There is now a `path` type, to go alongside `text` `word` etc.
Paths are expected to be (parts of) paths on the filesystem and
we have updated all bindings to use `path` where sensible to do so.
-* Subplotlib steps now handle the `path` type as `&Path`, so steps which
+- Subplotlib steps now handle the `path` type as `&Path`, so steps which
expect to be given paths should use that, rather than `&str`.
# Version 0.5.0, released 2022-09-13
-* The big, breaking change for this release is that Subplot now
+- The big, breaking change for this release is that Subplot now
expects document metadata in a separate YAML file. It was previously
embedded in the Markdown input file. This allows us to be more
strict, when parsing the metadata: we only need to support what
@@ -28,16 +41,16 @@ the user of the Subplot software.
on, it will also enable us to support multiple Markdown files as
input.
-* That change also means that we drop support for use of Subplot as a
+- That change also means that we drop support for use of Subplot as a
Pandoc filter (the `subplot-filter` command and the `subplot filter`
subcommand). It doesn't make sense unless the metadata is
embedded in the Markdown.
-* We've renamed things so that we consistently call a Markdown fenced
+- We've renamed things so that we consistently call a Markdown fenced
code block that is marked as a data file, an "embedded file".
Previously we also used other names, causing unnecessary confusion.
-* The new home page URL is updated in all crate metadata. This means
+- The new home page URL is updated in all crate metadata. This means
crates.io will point at the new location after this release is made.
# Version 0.4.3, released 2022-007-29