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}/`;