summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-08-07 11:59:41 +0300
committerLars Wirzenius <liw@liw.fi>2021-08-07 11:59:41 +0300
commit787ae74a44011619c091b89b67691502b42bbc99 (patch)
treebc7dd3292cb75451e7de02d629b993dc16589ad9
parent95c38e53af92ac6e545a68f68835db9bec214025 (diff)
downloadsubplot-787ae74a44011619c091b89b67691502b42bbc99.tar.gz
docs: update NEWS.md for new release
Sponsored-by: author
-rw-r--r--NEWS.md46
1 files changed, 46 insertions, 0 deletions
diff --git a/NEWS.md b/NEWS.md
index 3cad931..4215406 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -5,6 +5,52 @@ title: Release notes for Subplot
This file summarises the changes between released versions of Subplot and its
associated libraries.
+# Version 0.2.2, released 2021-08-07
+
+This is release is meant for use by people other than Subplot's own
+developers. It is of ALPHA quality, in that what is implemented is
+meant to work, but we reserve the right to make backwards incompatible,
+breaking changes in future releases.
+
+## General
+
+* When a scenario step matches more than one binding, the error
+ message now lists all the matching bindings to make it easier for
+ the user to fix the problem. (By Lars Wirzenius)
+
+* The documentation now explains core concepts relevant to Subplot,
+ and suggests an initial workflow for a project using Subplot. (By
+ Lars Wirzenius)
+
+## Python support
+
+* The `lib/daemon` Subplot library now uses custom Python code instead
+ of the netcat tool. This removes a dependency, and also avoids the
+ problem of there being at least two more or less incompatible
+ versions of netcat in common use. (By Alexander Batischev)
+
+* The `lib/daemon` library now has a way to pass environment variables
+ to the daemon. (By Alexander Batischev)
+
+## Bash support
+
+* The documentation now makes it clearer that the `files_get`
+ function returns the contents of the embedded file and not a
+ filename. (By Richard Maw)
+
+* Some spelling and other language mistakes have been fixed in the
+ documentation for Bash support. (By Richard Maw)
+
+* The `dict` helper functions can now read embedded files. (By Richard
+ Maw)
+
+* The generated Bash test program now supports the `--env` option to
+ let the user pass in environment variables when invoking the test
+ program. (By Richard Maw)
+
+* Assertion functions now return an error rather then terminating the
+ test program. This lets cleanups run. (By Richard Maw)
+
# Version 0.2.1, released 2021-07-11
This is the first release meant for use by people other than Subplot's