diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6661676..bc158c0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,11 @@
+## [1.0.0-beta.17](https://github.com/umbopepato/velociraptor/compare/1.0.0-beta.16...1.0.0-beta.17) (2021-03-11)
+
+
+### Features
+
+* add env_file option ([ea486a9](https://github.com/umbopepato/velociraptor/commit/ea486a9dec0d3ea77d3836f1ee57b2d01a595f5d))
+
## [1.0.0-beta.16](https://github.com/umbopepato/velociraptor/compare/1.0.0-beta.15...1.0.0-beta.16) (2020-10-30)
diff --git a/README.md b/README.md
index 8ccf578..0011332 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@
-
+
@@ -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.16)
+### 🦕 [Deno.land](https://deno.land/x/velociraptor@1.0.0-beta.17)
```sh
-$ deno install -qA -n vr https://deno.land/x/velociraptor@1.0.0-beta.16/cli.ts
+$ deno install -qA -n vr https://deno.land/x/velociraptor@1.0.0-beta.17/cli.ts
```
### 🥚 [Nest.land](https://nest.land/package/velociraptor)
```sh
-$ deno install -qA -n vr https://x.nest.land/velociraptor@1.0.0-beta.16/cli.ts
+$ deno install -qA -n vr https://x.nest.land/velociraptor@1.0.0-beta.17/cli.ts
```
@@ -101,7 +101,7 @@ scripts:
```ts
// scripts.ts
-import { ScriptsConfiguration } from "https://deno.land/x/velociraptor@1.0.0-beta.16/mod.ts";
+import { ScriptsConfiguration } from "https://deno.land/x/velociraptor@1.0.0-beta.17/mod.ts";
export default {
scripts: {
@@ -375,7 +375,7 @@ scripts:
### Script file model
-See [ScriptConfiguration](https://doc.deno.land/https/deno.land/x/velociraptor@1.0.0-beta.16/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.17/mod.ts#ScriptsConfiguration) for a detailed description of the structure of script files.
## Listing scripts
diff --git a/egg.yml b/egg.yml
index 6968244..6560330 100644
--- a/egg.yml
+++ b/egg.yml
@@ -1,7 +1,7 @@
name: velociraptor
description: An npm-style script runner for Deno
unstable: true
-version: 1.0.0-beta.16
+version: 1.0.0-beta.17
repository: 'https://github.com/umbopepato/velociraptor/'
entry: /cli.ts
files:
diff --git a/src/version.ts b/src/version.ts
index d286233..fa24c7d 100644
--- a/src/version.ts
+++ b/src/version.ts
@@ -1 +1 @@
-export const version = "1.0.0-beta.16";
+export const version = "1.0.0-beta.17";