From 714b01ddd8c71b16a3f06e890c4d68f4f317207e Mon Sep 17 00:00:00 2001 From: Ngo Iok Ui Date: Thu, 18 Feb 2021 11:09:14 +0800 Subject: [PATCH] Bump version 0.5 --- Cargo.toml | 2 +- examples/basic.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0f8e71150..5ec78c93d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wry" -version = "0.4.1" +version = "0.5.0" authors = ["Ngo Iok Ui "] edition = "2018" license = "Apache-2.0/MIT" diff --git a/examples/basic.rs b/examples/basic.rs index 96b15e35a..93bd32d4c 100644 --- a/examples/basic.rs +++ b/examples/basic.rs @@ -5,7 +5,7 @@ fn main() -> Result<()> { let mut app = Application::new()?; let attributes = Attributes { - url: Some("https://www.google.com".to_string()), + url: Some("https://tauri.studio".to_string()), // Initialization scripts can be used to define javascript functions and variables. initialization_scripts: vec![ String::from("breads = NaN"),