From 6d20b4af29c4443ae016821a50265e840cd66049 Mon Sep 17 00:00:00 2001 From: Umberto Pepato Date: Mon, 25 May 2020 17:29:34 +0200 Subject: [PATCH] chore(release): 1.0.0-beta.7 --- CHANGELOG.md | 14 ++++++++++++++ README.md | 6 +++--- src/version.ts | 2 +- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 009a755..185d49e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,18 @@ +## [1.0.0-beta.7](https://github.com/umbopepato/velociraptor/compare/v1.0.0-beta.6...v1.0.0-beta.7) (2020-05-25) + + +### Features + +* **export:** add script exporting functionality ([399d5e3](https://github.com/umbopepato/velociraptor/commit/399d5e3d101df95bf35d71e2ab9542bff004fe3f)) + + +### Bug Fixes + +* **cli:** flags in additionalArgs consumed by vr ([9510a92](https://github.com/umbopepato/velociraptor/commit/9510a92cc07f3ae69d3ffa8fc696ff6bcaf8c36c)), closes [#26](https://github.com/umbopepato/velociraptor/issues/26) +* **script-config:** add ParallelScripts to CompositeScript ([bb3d7bf](https://github.com/umbopepato/velociraptor/commit/bb3d7bfc7b826839a1eda9f4d046c4c736078d60)) +* correct validation functions imports ([454cb75](https://github.com/umbopepato/velociraptor/commit/454cb756fe1026daa06e72ed77a6582d1b82daad)) + ## [1.0.0-beta.6](https://github.com/umbopepato/velociraptor/compare/v1.0.0-beta.5...v1.0.0-beta.6) (2020-05-22) diff --git a/README.md b/README.md index a8e2b68..4db2146 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ CI Version GitHub stars - + @@ -70,7 +70,7 @@ $ deno install ... https://deno.land/x/velociraptor@/cli.ts For example ```sh -$ deno install --allow-read --allow-write --allow-env --allow-run -n vr https://deno.land/x/velociraptor@v1.0.0-beta.6/cli.ts +$ deno install --allow-read --allow-write --allow-env --allow-run -n vr https://deno.land/x/velociraptor@v1.0.0-beta.7/cli.ts ``` @@ -301,7 +301,7 @@ scripts: ### Script file model -See [ScriptConfiguration](https://doc.deno.land/https/deno.land/x/velociraptor@v1.0.0-beta.6/src/scripts_config.ts#ScriptsConfiguration) for a detailed description of the structure of script files. +See [ScriptConfiguration](https://doc.deno.land/https/deno.land/x/velociraptor@v1.0.0-beta.7/src/scripts_config.ts#ScriptsConfiguration) for a detailed description of the structure of script files. ## Listing scripts diff --git a/src/version.ts b/src/version.ts index 729156a..9e0bb14 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const version = "1.0.0-beta.6"; +export const version = "1.0.0-beta.7";