Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
umbopepato committed Jun 5, 2020
2 parents 939c665 + 45db041 commit 429a0d5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@

## [1.0.0-beta.9](https://github.com/umbopepato/velociraptor/compare/v1.0.0-beta.8...v1.0.0-beta.9) (2020-05-29)


### Bug Fixes

* quoted arguments with spaces are split ([c00c866](https://github.com/umbopepato/velociraptor/commit/c00c8661bb684cf491899a4149e043083a66ef8f)), closes [#28](https://github.com/umbopepato/velociraptor/issues/28)

## [1.0.0-beta.8](https://github.com/umbopepato/velociraptor/compare/v1.0.0-beta.7...v1.0.0-beta.8) (2020-05-25)


Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<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="#badge"><img alt="vr scripts" src="https://badges.velociraptor.run/flat.svg"/></a>
<a href="https://doc.deno.land/https/deno.land/x/velociraptor@v1.0.0-beta.8/src/scripts_config.ts#ScriptsConfiguration"><img src="https://img.shields.io/badge/deno-doc-blue?logo=deno"></a>
<a href="https://doc.deno.land/https/deno.land/x/velociraptor@v1.0.0-beta.9/src/scripts_config.ts#ScriptsConfiguration"><img src="https://img.shields.io/badge/deno-doc-blue?logo=deno"></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 @@ -72,7 +72,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.8/cli.ts
$ deno install --allow-read --allow-write --allow-env --allow-run -n vr https://deno.land/x/velociraptor@v1.0.0-beta.9/cli.ts
```

</details>
Expand Down Expand Up @@ -303,7 +303,7 @@ scripts:

### Script file model

See [ScriptConfiguration](https://doc.deno.land/https/deno.land/x/velociraptor@v1.0.0-beta.8/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.9/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/cli/commands/vr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class VrCommand extends Command {
this.name("vr")
.version(version)
.description(
"🦖 Velociraptor\nAn npm-style script runner for Deno\n\nDocs: https://github.com/umbopepato/velociraptor",
"🦖 Velociraptor\nAn npm-style script runner for Deno\n\nDocs: https://velociraptor.run",
)
.env(
"VR_SHELL=<value:string>",
Expand Down
2 changes: 1 addition & 1 deletion src/validate_config_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function validateConfigData(configData: ConfigData | null) {
Object.entries(configData.config.scripts).length < 1
) {
log.warning(
"No scripts available.\nSee https://github.com/umbopepato/velociraptor for guidance on how to create scripts.",
"No scripts available.\nSee https://velociraptor.run for guidance on how to create scripts.",
);
Deno.exit();
}
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.8";
export const version = "1.0.0-beta.9";

0 comments on commit 429a0d5

Please sign in to comment.