From 4c11e37dbecfe670b0e4eec34b2f10c5fb97f72d Mon Sep 17 00:00:00 2001 From: Erik Grinaker Date: Mon, 1 Jul 2024 14:23:43 +0200 Subject: [PATCH] Cargo.toml: release 0.7.0 --- CHANGELOG.md | 9 ++++++--- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3981af6..7d2c126 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,12 @@ -# Unreleased +# 0.7.0 (2024-07-01) **Improvements** -* Add `>` syntax to use the raw line as the command name. -* Allow tags before command. +* [`29903fa`]: Add `>` syntax to use the raw line as the command name. +* [`5d2519c`]: Allow tags before command. + +[`29903fa`]: https://github.com/erikgrinaker/goldenscript/commit/29903faed2813329a89b5d79080ec6843c1bac2d +[`5d2519c`]: https://github.com/erikgrinaker/goldenscript/commit/5d2519c2623765bb72b6648334763eba09a0f9e7 # 0.6.0 (2024-06-13) diff --git a/Cargo.lock b/Cargo.lock index 900bb91..3f768fb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -79,7 +79,7 @@ dependencies = [ [[package]] name = "goldenscript" -version = "0.6.0" +version = "0.7.0" dependencies = [ "goldenfile", "nom", diff --git a/Cargo.toml b/Cargo.toml index 0a5df43..e7657d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "goldenscript" -version = "0.6.0" +version = "0.7.0" description = "A scriptable, data-driven test framework using golden masters" categories = ["development-tools::testing"] authors = ["Erik Grinaker "]