Skip to content

Commit

Permalink
Version bump 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PolyMeilex committed Aug 15, 2023
1 parent f8ca6fa commit 1d7d765
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## Unreleased

## 0.6.1
- Bump tiny-skia to v0.11 (#32)
- cleanup: Remove debug println (#29)
- Support custom header buttons layouts (#30)
- The double click threshold value was raised to `400ms`

## 0.6.0
Expand Down
11 changes: 8 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sctk-adwaita"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
authors = ["Poly <marynczak.bartlomiej@gmail.com>"]
keywords = ["sctk"]
Expand All @@ -11,12 +11,17 @@ description = "Adwaita-like SCTK Frame"

[dependencies]
smithay-client-toolkit = { version = "0.17.0", default_features = false }
tiny-skia = { version = "0.11", default-features = false, features = ["std", "simd"] }
tiny-skia = { version = "0.11", default-features = false, features = [
"std",
"simd",
] }
log = "0.4"
memmap2 = { version = "0.5.8", optional = true }

# Draw title text using crossfont `--features crossfont`
crossfont = { version = "0.5.0", features = ["force_system_fontconfig"], optional = true }
crossfont = { version = "0.5.0", features = [
"force_system_fontconfig",
], optional = true }
# Draw title text using ab_glyph `--features ab_glyph`
ab_glyph = { version = "0.2.17", optional = true }

Expand Down

0 comments on commit 1d7d765

Please sign in to comment.