summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2023-04-30 11:51:20 +0300
committerLars Wirzenius <liw@liw.fi>2023-04-30 11:51:20 +0300
commit8ffeac68e7e00e3e59057126a051712c18c37272 (patch)
tree46ede61ce945981ef68d7a9362ddb563beb40dcc
parent657fa94e530a4342e1511e81ebc3c52736565ef5 (diff)
downloadsubplot-8ffeac68e7e00e3e59057126a051712c18c37272.tar.gz
chore: prepare release 0.7.1
Sponsored-by: author
-rw-r--r--Cargo.toml2
-rw-r--r--NEWS.md9
-rw-r--r--debian/changelog6
-rw-r--r--subplot-build/Cargo.toml4
-rw-r--r--subplotlib-derive/Cargo.toml2
-rw-r--r--subplotlib/Cargo.toml6
6 files changed, 22 insertions, 7 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 4ea3921..d895ff6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "subplot"
-version = "0.7.0"
+version = "0.7.1"
authors = [
"Lars Wirzenius <liw@liw.fi>",
"Daniel Silverstone <dsilvers@digital-scurf.org>",
diff --git a/NEWS.md b/NEWS.md
index 42e10dd..8935785 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -4,6 +4,15 @@ 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.1, released 2023-04-30
+
+- Subplot now handles scenario titles with markup (such as bold face).
+ This was broken in the changes to drop use of Pandoc for parsing.
+- CI job using the MSRV version doesn't check source code formatting
+ anymore.
+- The dependency on the roadmap crate now depends on a version that
+ doesn't require the `clap` crate at all anymore.
+
# Version 0.7.0, released 2023-04-10
- Subplot no longer uses `pandoc` at all. This means that
diff --git a/debian/changelog b/debian/changelog
index 54e2874..54d1857 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+subplot (0.7.1-1) unstable; urgency=medium
+
+ * New release.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 30 Apr 2023 11:51:05 +0300
+
subplot (0.7.0-1) unstable; urgency=medium
* New release.
diff --git a/subplot-build/Cargo.toml b/subplot-build/Cargo.toml
index af84e8e..bade3f8 100644
--- a/subplot-build/Cargo.toml
+++ b/subplot-build/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "subplot-build"
-version = "0.7.0"
+version = "0.7.1"
authors = [
"Lars Wirzenius <liw@liw.fi>",
"Daniel Silverstone <dsilvers@digital-scurf.org>",
@@ -15,6 +15,6 @@ rust-version = "1.63"
[dependencies]
-subplot = { version = "0.7.0", path = ".." }
+subplot = { version = "0.7.1", path = ".." }
tracing = "0.1"
tempfile = "3.1.0"
diff --git a/subplotlib-derive/Cargo.toml b/subplotlib-derive/Cargo.toml
index d0abce4..675c67b 100644
--- a/subplotlib-derive/Cargo.toml
+++ b/subplotlib-derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "subplotlib-derive"
-version = "0.7.0"
+version = "0.7.1"
authors = [
"Lars Wirzenius <liw@liw.fi>",
"Daniel Silverstone <dsilvers@digital-scurf.org>",
diff --git a/subplotlib/Cargo.toml b/subplotlib/Cargo.toml
index c5b5ccc..75ea076 100644
--- a/subplotlib/Cargo.toml
+++ b/subplotlib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "subplotlib"
-version = "0.7.0"
+version = "0.7.1"
authors = [
"Lars Wirzenius <liw@liw.fi>",
"Daniel Silverstone <dsilvers@digital-scurf.org>",
@@ -17,7 +17,7 @@ rust-version = "1.63"
[dependencies]
fehler = "1"
-subplotlib-derive = { version = "0.7.0", path = "../subplotlib-derive" }
+subplotlib-derive = { version = "0.7.1", path = "../subplotlib-derive" }
lazy_static = "1"
base64 = "0.21.0"
state = "0.5"
@@ -33,7 +33,7 @@ remove_dir_all = "0.8"
[build-dependencies]
glob = "0.3"
-subplot-build = { version = "0.7.0", path = "../subplot-build" }
+subplot-build = { version = "0.7.1", path = "../subplot-build" }
[dev-dependencies]
serde_json = "1.0"