Skip to content

Commit

Permalink
chore(release): 1.0.0-beta.16
Browse files Browse the repository at this point in the history
  • Loading branch information
umbopepato committed Oct 30, 2020
1 parent 0b8ec5d commit 9f2c84a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@

## [1.0.0-beta.16](https://github.com/umbopepato/velociraptor/compare/1.0.0-beta.15...1.0.0-beta.16) (2020-10-30)


### Features

* **cli:** add deno 1.5.0 new cli options ([eada07f](https://github.com/umbopepato/velociraptor/commit/eada07f106b23b99b3b7506b29706579cce0a5ce))


### Bug Fixes

* deno 1.5.0 incompatibility ([726a66c](https://github.com/umbopepato/velociraptor/commit/726a66c133e33dc4d2d4ab7438a812615b11b2d1))

## [1.0.0-beta.15](https://github.com/umbopepato/velociraptor/compare/1.0.0-beta.14...1.0.0-beta.15) (2020-10-23)


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/[email protected].15/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].16/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/[email protected].15)
### 🦕 [Deno.land](https://deno.land/x/[email protected].16)

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

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

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

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

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

### Script file model

See [ScriptConfiguration](https://doc.deno.land/https/deno.land/x/[email protected].15/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].16/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.15
version: 1.0.0-beta.16
repository: 'https://github.com/umbopepato/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.15";
export const version = "1.0.0-beta.16";

0 comments on commit 9f2c84a

Please sign in to comment.