From 0bd8216866e42b2f9461fb5d05a76ca712fac534 Mon Sep 17 00:00:00 2001 From: Diggory Hardy Date: Thu, 22 Dec 2022 13:18:39 +0000 Subject: [PATCH] Prepare 0.12.1 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 8 ++++---- crates/kas-core/Cargo.toml | 2 +- crates/kas-wgpu/Cargo.toml | 2 +- crates/kas-widgets/Cargo.toml | 2 +- 5 files changed, 16 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84daa2462..046942571 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.12.1] — 2022-12-22 + +### Fixes + +- Use `PresentMode::Fifo`, improving compatibility with older Intel graphics, + at the cost of some hangs with multiple windows on X11 (#369) +- Fix mouse highlighting for `Spinner` widget (#369) +- Show mnemonic (`AccelLabel`) hints with Alt key when edit field has focus (#369) + ## [0.12.0] — 2022-12-13 Stabilise support for Generic Associated Types (GATs). This requires Rust 1.65.0, diff --git a/Cargo.toml b/Cargo.toml index 756268df9..d9c316ea8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kas" -version = "0.12.0" +version = "0.12.1" authors = ["Diggory Hardy "] edition = "2021" license = "Apache-2.0" @@ -104,9 +104,9 @@ macros_log = ["kas-core/macros_log"] winit = ["kas-core/winit"] [dependencies] -kas-core = { version = "0.12.0", path = "crates/kas-core" } +kas-core = { version = "0.12.1", path = "crates/kas-core" } kas-dylib = { version = "0.12.0", path = "crates/kas-dylib", optional = true } -kas-widgets = { version = "0.12.0", path = "crates/kas-widgets" } +kas-widgets = { version = "0.12.1", path = "crates/kas-widgets" } kas-view = { version = "0.12.0", path = "crates/kas-view", optional = true } kas-resvg = { version = "0.12.0", path = "crates/kas-resvg", optional = true } @@ -117,7 +117,7 @@ optional = true default-features = false [dependencies.kas-wgpu] -version = "0.12.0" +version = "0.12.1" path = "crates/kas-wgpu" optional = true default-features = false diff --git a/crates/kas-core/Cargo.toml b/crates/kas-core/Cargo.toml index 40cdbe1fa..52d95c662 100644 --- a/crates/kas-core/Cargo.toml +++ b/crates/kas-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kas-core" -version = "0.12.0" +version = "0.12.1" authors = ["Diggory Hardy "] edition = "2021" license = "Apache-2.0" diff --git a/crates/kas-wgpu/Cargo.toml b/crates/kas-wgpu/Cargo.toml index 62994831a..0f5553192 100644 --- a/crates/kas-wgpu/Cargo.toml +++ b/crates/kas-wgpu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kas-wgpu" -version = "0.12.0" +version = "0.12.1" authors = ["Diggory Hardy "] edition = "2021" license = "Apache-2.0" diff --git a/crates/kas-widgets/Cargo.toml b/crates/kas-widgets/Cargo.toml index cfa18deee..d000f696b 100644 --- a/crates/kas-widgets/Cargo.toml +++ b/crates/kas-widgets/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kas-widgets" -version = "0.12.0" +version = "0.12.1" authors = ["Diggory Hardy "] edition = "2021" license = "Apache-2.0"