From 315ef7707dd6d269b3a1fc82e118a8c0221cbecd Mon Sep 17 00:00:00 2001 From: Qu4k Date: Wed, 22 Jul 2020 17:46:14 +0200 Subject: [PATCH] chore: release 0.4.5 --- Cargo.lock | 2 +- Cargo.toml | 2 +- deps.ts | 2 +- plugin.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 075e37f..55e9a8f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -605,7 +605,7 @@ dependencies = [ [[package]] name = "webview_deno" -version = "0.4.4" +version = "0.4.5" dependencies = [ "deno_core", "futures 0.3.5", diff --git a/Cargo.toml b/Cargo.toml index 0f120d8..d2ed1d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webview_deno" -version = "0.4.4" +version = "0.4.5" authors = ["Elias Sjögreen", "Filippo Rossi"] edition = "2018" diff --git a/deps.ts b/deps.ts index bb894e6..7dd2e1b 100644 --- a/deps.ts +++ b/deps.ts @@ -1,2 +1,2 @@ -export { Plug } from "https://x.nest.land/plug@0.0.3/mod.ts"; +export { Plug } from "https://x.nest.land/plug@0.0.4/mod.ts"; export { deferred } from "https://deno.land/std@0.61.0/async/mod.ts"; diff --git a/plugin.ts b/plugin.ts index 0df223f..2105b58 100644 --- a/plugin.ts +++ b/plugin.ts @@ -1,6 +1,6 @@ import { Plug, deferred } from "./deps.ts"; -const VERSION = "0.4.4"; +const VERSION = "0.4.5"; export const PLUGIN_URL_BASE = Deno.env.get("WEBVIEW_DENO_PLUGIN_BASE") || `https://github.com/webview/webview_deno/releases/download/${VERSION}/`;