summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2023-08-27 11:32:40 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2023-08-27 11:32:40 +0100
commit4ddd9a84e488948606de30d2123d02636198b1ab (patch)
tree11f802d672c3c95fa06c8294796d709d5404b69a
parent529b84fd46b6d9ada1a67ed6dfd2841ad25213a7 (diff)
downloadsubplot-4ddd9a84e488948606de30d2123d02636198b1ab.tar.gz
(release): Prepare 0.9.0 release
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
-rw-r--r--Cargo.lock8
-rw-r--r--Cargo.toml2
-rw-r--r--NEWS.md8
-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
7 files changed, 25 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1bac0df..89665a2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1056,7 +1056,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "subplot"
-version = "0.8.0"
+version = "0.9.0"
dependencies = [
"anyhow",
"base64",
@@ -1086,7 +1086,7 @@ dependencies = [
[[package]]
name = "subplot-build"
-version = "0.8.0"
+version = "0.9.0"
dependencies = [
"subplot",
"tempfile",
@@ -1104,7 +1104,7 @@ dependencies = [
[[package]]
name = "subplotlib"
-version = "0.8.0"
+version = "0.9.0"
dependencies = [
"base64",
"fehler",
@@ -1126,7 +1126,7 @@ dependencies = [
[[package]]
name = "subplotlib-derive"
-version = "0.8.0"
+version = "0.9.0"
dependencies = [
"fehler",
"proc-macro2",
diff --git a/Cargo.toml b/Cargo.toml
index efed35a..d29c1bf 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "subplot"
-version = "0.8.0"
+version = "0.9.0"
authors = [
"Lars Wirzenius <liw@liw.fi>",
"Daniel Silverstone <dsilvers@digital-scurf.org>",
diff --git a/NEWS.md b/NEWS.md
index 920508e..01d145d 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -4,6 +4,14 @@ 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.9.0, released 2023-08-27
+
+- We hope this will be the last breaking change before 1.0, however we
+ are not ruling out future breaks if they are justified to improve
+ usability or capability before an official 1.0 release
+- We now pass a lot more meta-information about step location to the
+ templates for building test suites.
+
# Version 0.8.0, released 2023-06-14
- Subplot now permits multiple markdown documents to be used in a single
diff --git a/debian/changelog b/debian/changelog
index c2c972c..3f38e7f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+subplot (0.9.0-1) unstable; urgency=medium
+
+ * New release.
+
+ -- Daniel Silverstone <dsilvers@digital-scurf.org> Sun, 27 Aug 2023 11:30:00 +0100
+
subplot (0.8.0-1) unstable; urgency=medium
* New release.
diff --git a/subplot-build/Cargo.toml b/subplot-build/Cargo.toml
index 242f21e..bf24c9a 100644
--- a/subplot-build/Cargo.toml
+++ b/subplot-build/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "subplot-build"
-version = "0.8.0"
+version = "0.9.0"
authors = [
"Lars Wirzenius <liw@liw.fi>",
"Daniel Silverstone <dsilvers@digital-scurf.org>",
@@ -15,6 +15,6 @@ rust-version = "1.63"
[dependencies]
-subplot = { version = "0.8.0", path = ".." }
+subplot = { version = "0.9.0", path = ".." }
tracing = "0.1"
tempfile = "3.1.0"
diff --git a/subplotlib-derive/Cargo.toml b/subplotlib-derive/Cargo.toml
index 6beb4cd..ece7103 100644
--- a/subplotlib-derive/Cargo.toml
+++ b/subplotlib-derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "subplotlib-derive"
-version = "0.8.0"
+version = "0.9.0"
authors = [
"Lars Wirzenius <liw@liw.fi>",
"Daniel Silverstone <dsilvers@digital-scurf.org>",
diff --git a/subplotlib/Cargo.toml b/subplotlib/Cargo.toml
index 57f3c58..4994e5a 100644
--- a/subplotlib/Cargo.toml
+++ b/subplotlib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "subplotlib"
-version = "0.8.0"
+version = "0.9.0"
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.8.0", path = "../subplotlib-derive" }
+subplotlib-derive = { version = "0.9.0", 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.8.0", path = "../subplot-build" }
+subplot-build = { version = "0.9.0", path = "../subplot-build" }
[dev-dependencies]
serde_json = "1.0"