Skip to content

Commit

Permalink
chore(release): 1.0.0-beta.11
Browse files Browse the repository at this point in the history
  • Loading branch information
umbopepato committed Jun 9, 2020
1 parent a4e1559 commit c30307f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@

## [1.0.0-beta.11](https://github.com/umbopepato/velociraptor/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2020-06-09)


### Features

* add support for `.ts` config files ([df27540](https://github.com/umbopepato/velociraptor/commit/df275400bb0e5fb232f5fbc72237f679006a032a))

### Bug Fixes

* **cli:** default help option not working ([4a88bfa](https://github.com/umbopepato/velociraptor/commit/4a88bfa299cfdf535e2e9cafdb4ea1c47ff7beda)), closes [#32](https://github.com/umbopepato/velociraptor/issues/32)
* **config:** use the file:// protocol to import ts config files ([e82be9c](https://github.com/umbopepato/velociraptor/commit/e82be9ca12eaa35aa3a7f3967ed094f11312d607))
* **export:** execute exported scripts in the correct workdir ([446962f](https://github.com/umbopepato/velociraptor/commit/446962f612b168bdfdd0a3eb87a3941a37ce96c0))

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


Expand Down
8 changes: 4 additions & 4 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/[email protected].10/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/[email protected].11/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="https://discord.gg/M5K7TBd"><img src="https://img.shields.io/badge/join-chat-7289DA?logo=discord&logoColor=white"/></a>
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-brightgreen"/></a>
Expand Down Expand Up @@ -51,7 +51,7 @@ One of the things that many developers find disorientating about Deno is the fac
## Install

```sh
$ deno install -qA -n vr https://deno.land/x/[email protected].10/cli.ts
$ deno install -qA -n vr https://deno.land/x/[email protected].11/cli.ts
```

**Upgrade**
Expand Down Expand Up @@ -88,7 +88,7 @@ scripts:

```ts
// scripts.ts
import { ScriptsConfiguration } from "https://deno.land/x/[email protected].10/mod.ts";
import { ScriptsConfiguration } from "https://deno.land/x/[email protected].11/mod.ts";
export default <ScriptsConfiguration>{
scripts: {
Expand Down Expand Up @@ -295,7 +295,7 @@ scripts:

### Script file model

See [ScriptConfiguration](https://doc.deno.land/https/deno.land/x/[email protected].10/mod.ts#ScriptsConfiguration) for a detailed description of the structure of script files.
See [ScriptConfiguration](https://doc.deno.land/https/deno.land/x/[email protected].11/mod.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.10";
export const version = "1.0.0-beta.11";

0 comments on commit c30307f

Please sign in to comment.