From 3ea05e6ee4493dc34d2f0ae073c0b7f3d81740c8 Mon Sep 17 00:00:00 2001 From: Bamidev Date: Sat, 16 Mar 2024 13:15:53 +0100 Subject: [PATCH] v0.12.3 --- Cargo.toml | 4 ++-- c/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 10475bf..b1658aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "browser-window" -version = "0.12.2" +version = "0.12.3" description = "A simple, optionally async, optionally threadsafe, electron-like browser toolkit for Rust." edition = "2018" authors = ["Bamidev"] @@ -32,7 +32,7 @@ name = "authentication" path = "examples/authentication.rs" [dependencies] -browser-window-c = { path = "c", version = "=0.3.1" } +browser-window-c = { path = "c", version = "=0.3.2" } futures-channel = { version = "^0.3" } glib = { version = "0.18", optional = true } gtk = { version = "0.18", optional = true } diff --git a/c/Cargo.toml b/c/Cargo.toml index a7ec3f1..e7a829c 100644 --- a/c/Cargo.toml +++ b/c/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "browser-window-c" -version = "0.3.1" +version = "0.3.2" description = "Browser framework functionality for BrowserWindow written in C/C++." edition = "2018" authors = ["Bamidev"]