Skip to content

Commit

Permalink
chore(release): 1.0.0-beta.18
Browse files Browse the repository at this point in the history
  • Loading branch information
umbopepato committed Mar 21, 2021
1 parent 3466dc1 commit 4914c23
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 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.18](https://github.com/jurassiscripts/velociraptor/compare/1.0.0-beta.17...1.0.0-beta.18) (2021-03-21)


### Bug Fixes

* **cli:** fix shell completions ([216de2c](https://github.com/jurassiscripts/velociraptor/commit/216de2cf4f4fc312eda6f644d1feb4ff9e859193))

## [1.0.0-beta.17](https://github.com/umbopepato/velociraptor/compare/1.0.0-beta.16...1.0.0-beta.17) (2021-03-11)


Expand Down
12 changes: 6 additions & 6 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@1.0.0-beta.17/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@1.0.0-beta.18/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 @@ -50,16 +50,16 @@ Deno [doesn't have](https://deno.land/manual#philosophy) a dedicated package man

## Install

### 🦕 [Deno.land](https://deno.land/x/velociraptor@1.0.0-beta.17)
### 🦕 [Deno.land](https://deno.land/x/velociraptor@1.0.0-beta.18)

```sh
$ deno install -qA -n vr https://deno.land/x/velociraptor@1.0.0-beta.17/cli.ts
$ deno install -qA -n vr https://deno.land/x/velociraptor@1.0.0-beta.18/cli.ts
```

### 🥚 [Nest.land](https://nest.land/package/velociraptor)

```sh
$ deno install -qA -n vr https://x.nest.land/velociraptor@1.0.0-beta.17/cli.ts
$ deno install -qA -n vr https://x.nest.land/velociraptor@1.0.0-beta.18/cli.ts
```

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

```ts
// scripts.ts
import { ScriptsConfiguration } from "https://deno.land/x/velociraptor@1.0.0-beta.17/mod.ts";
import { ScriptsConfiguration } from "https://deno.land/x/velociraptor@1.0.0-beta.18/mod.ts";

export default <ScriptsConfiguration>{
scripts: {
Expand Down Expand Up @@ -375,7 +375,7 @@ scripts:

### Script file model

See [ScriptConfiguration](https://doc.deno.land/https/deno.land/x/velociraptor@1.0.0-beta.17/mod.ts#ScriptsConfiguration) for a detailed description of the structure of script files.
See [ScriptConfiguration](https://doc.deno.land/https/deno.land/x/velociraptor@1.0.0-beta.18/mod.ts#ScriptsConfiguration) for a detailed description of the structure of script files.

## Listing scripts

Expand Down
2 changes: 1 addition & 1 deletion egg.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: velociraptor
description: An npm-style script runner for Deno
unstable: true
version: 1.0.0-beta.17
version: 1.0.0-beta.18
repository: 'https://github.com/jurassiscripts/velociraptor/'
entry: ./cli.ts
files:
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.17";
export const version = "1.0.0-beta.18";

0 comments on commit 4914c23

Please sign in to comment.