From 3496a46244a148e6fb38b0f517cc1ec02cafb0c1 Mon Sep 17 00:00:00 2001 From: Bamidev Date: Fri, 1 Mar 2024 15:29:56 +0100 Subject: [PATCH] v0.10.0 --- Cargo.toml | 4 ++-- c/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3285c44..d9a1a36 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "browser-window" -version = "0.9.4" +version = "0.10.0" description = "A simple, async/await aware browser window." edition = "2018" authors = ["Bamidev"] @@ -33,7 +33,7 @@ name = "authentication" path = "examples/authentication.rs" [dependencies] -browser-window-c = { path = "c", version = "0.0.12" } +browser-window-c = { path = "c", version = "0.0.13" } futures-channel = { version = "^0.3" } gtk = { version = "0.18", optional = true } javascriptcore-rs = { version = "1", optional = true } diff --git a/c/Cargo.toml b/c/Cargo.toml index 3d22c79..98f86db 100644 --- a/c/Cargo.toml +++ b/c/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "browser-window-c" -version = "0.0.12" +version = "0.0.13" description = "FFI bindings for the browser-window crate." edition = "2018" authors = ["Bamidev"]