Skip to content

Commit

Permalink
Prepare 0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dhardy committed Dec 22, 2022
1 parent 4dd6ccb commit 0bd8216
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kas"
version = "0.12.0"
version = "0.12.1"
authors = ["Diggory Hardy <git@dhardy.name>"]
edition = "2021"
license = "Apache-2.0"
Expand Down Expand Up @@ -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 }

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/kas-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kas-core"
version = "0.12.0"
version = "0.12.1"
authors = ["Diggory Hardy <git@dhardy.name>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/kas-wgpu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kas-wgpu"
version = "0.12.0"
version = "0.12.1"
authors = ["Diggory Hardy <git@dhardy.name>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/kas-widgets/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kas-widgets"
version = "0.12.0"
version = "0.12.1"
authors = ["Diggory Hardy <git@dhardy.name>"]
edition = "2021"
license = "Apache-2.0"
Expand Down

0 comments on commit 0bd8216

Please sign in to comment.