Skip to content

Commit

Permalink
chore(release): 1.0.0-beta.7
Browse files Browse the repository at this point in the history
  • Loading branch information
umbopepato committed May 25, 2020
1 parent c5c1c90 commit 6d20b4a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<img alt="CI" src="https://github.com/umbopepato/velociraptor/workflows/Deno%20CI/badge.svg"/>
<img alt="Version" src="https://img.shields.io/github/v/release/umbopepato/velociraptor?logo=github&include_prereleases">
<a href="https://github.com/umbopepato/velociraptor"><img alt="GitHub stars" src="https://img.shields.io/github/stars/umbopepato/velociraptor?logo=github"></a>
<a href="https://doc.deno.land/https/deno.land/x/velociraptor@v1.0.0-beta.6/src/scripts_config.ts#ScriptsConfiguration"><img src="https://doc.deno.land/badge.svg"></a>
<a href="https://doc.deno.land/https/deno.land/x/velociraptor@v1.0.0-beta.7/src/scripts_config.ts#ScriptsConfiguration"><img src="https://doc.deno.land/badge.svg"></a>
<a href="https://deno.land"><img src="https://img.shields.io/badge/deno-%5E1.0.0-green?logo=deno"/></a>
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-brightgreen"/></a>

Expand Down Expand Up @@ -70,7 +70,7 @@ $ deno install ... https://deno.land/x/velociraptor@<version>/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
```

</details>
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = "1.0.0-beta.6";
export const version = "1.0.0-beta.7";

0 comments on commit 6d20b4a

Please sign in to comment.