From 4fb4eb3b8247fd879120dd5edcb0e13739566949 Mon Sep 17 00:00:00 2001 From: Hamza Date: Thu, 25 Nov 2021 22:25:38 +0500 Subject: [PATCH] 0.4.2 Gloo utils -> 0.1.1 I forgot to include this in previous release --- Cargo.toml | 4 ++-- crates/utils/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5ffe28ce..39244087 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ edition = "2018" license = "MIT/Apache-2.0" name = "gloo" readme = "README.md" -version = "0.4.1" +version = "0.4.2" repository = "https://github.com/rustwasm/gloo" homepage = "https://gloo-rs.web.app/" documentation = "https://docs.rs/gloo/" @@ -19,7 +19,7 @@ gloo-dialogs = { version = "0.1.0", path = "crates/dialogs" } gloo-storage = { version = "0.2.0", path = "crates/storage" } gloo-render = { version = "0.1.0", path = "crates/render" } gloo-console = { version = "0.2.1", path = "crates/console" } -gloo-utils = { version = "0.1.0", path = "crates/utils" } +gloo-utils = { version = "0.1.1", path = "crates/utils" } [features] default = [] diff --git a/crates/utils/Cargo.toml b/crates/utils/Cargo.toml index b1101394..70dbbe13 100644 --- a/crates/utils/Cargo.toml +++ b/crates/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gloo-utils" -version = "0.1.0" +version = "0.1.1" edition = "2018" description = "Convenience crate for common `web_sys` features" authors = ["Rust and WebAssembly Working Group"]