Preparing v0.3.0

This commit is contained in:
Jonathan Johnson 2024-05-12 08:30:43 -07:00
parent daccac26bb
commit db2296c626
No known key found for this signature in database
GPG key ID: A66D6A34D6620579
3 changed files with 13 additions and 13 deletions

View file

@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- markdownlint-disable no-duplicate-heading --> <!-- markdownlint-disable no-duplicate-heading -->
## Unreleased ## v0.3.0 (2024-05-12)
### Breaking Changes ### Breaking Changes

15
Cargo.lock generated
View file

@ -117,8 +117,9 @@ checksum = "25bdb32cbbdce2b519a9cd7df3a678443100e265d5e25ca763b7572a5104f5f3"
[[package]] [[package]]
name = "appit" name = "appit"
version = "0.2.0" version = "0.3.0"
source = "git+https://github.com/khonsulabs/appit#ee4528cab24ce619fa8c8c0c859c838f73da211f" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da2d843ba328a4f80746ccd2b4f7969c4a611c1b4e0c6666acc0c74166dd4614"
dependencies = [ dependencies = [
"winit", "winit",
] ]
@ -841,8 +842,9 @@ dependencies = [
[[package]] [[package]]
name = "figures" name = "figures"
version = "0.2.2" version = "0.3.0"
source = "git+https://github.com/khonsulabs/figures#dcfe2381e32e8528cb85262662f5b40d32c95dfa" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a43add57113d87718cf315510434cf30f84397d0ad5d62db1833b1001a1c5a9"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"euclid", "euclid",
@ -1292,8 +1294,9 @@ checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
[[package]] [[package]]
name = "kludgine" name = "kludgine"
version = "0.7.0" version = "0.8.0"
source = "git+https://github.com/khonsulabs/kludgine#9ab807932f2a5185cb775e93c1a8640b02dde38c" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e13680642bf2341b359172f7bf5d3872fee98d91a72fc29e6fdb1eed827a3e92"
dependencies = [ dependencies = [
"ahash", "ahash",
"alot", "alot",

View file

@ -3,7 +3,7 @@ members = ["cushy-macros", "guide/guide-examples"]
[package] [package]
name = "cushy" name = "cushy"
version = "0.2.0" version = "0.3.0"
edition = "2021" edition = "2021"
description = "A wgpu-powered graphical user interface (GUI) library with a reactive data model" description = "A wgpu-powered graphical user interface (GUI) library with a reactive data model"
repository = "https://github.com/khonsulabs/cushy" repository = "https://github.com/khonsulabs/cushy"
@ -22,11 +22,8 @@ tokio = ["dep:tokio"]
tokio-multi-thread = ["tokio", "tokio/rt-multi-thread"] tokio-multi-thread = ["tokio", "tokio/rt-multi-thread"]
[dependencies] [dependencies]
# kludgine = { version = "0.7.0", features = ["app"] } kludgine = { version = "0.8.0", features = ["app"] }
kludgine = { git = "https://github.com/khonsulabs/kludgine", features = [ figures = { version = "0.3.0" }
"app",
] }
figures = { version = "0.2.1", git = "https://github.com/khonsulabs/figures" }
alot = "0.3" alot = "0.3"
interner = "0.2.1" interner = "0.2.1"
kempt = "0.2.1" kempt = "0.2.1"