From db2296c62681228418c3673cca9eef6a5a209e68 Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Sun, 12 May 2024 08:30:43 -0700 Subject: [PATCH] Preparing v0.3.0 --- CHANGELOG.md | 2 +- Cargo.lock | 15 +++++++++------ Cargo.toml | 9 +++------ 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9e2c13..fc23d9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 -## Unreleased +## v0.3.0 (2024-05-12) ### Breaking Changes diff --git a/Cargo.lock b/Cargo.lock index f8433d0..aa4b788 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -117,8 +117,9 @@ checksum = "25bdb32cbbdce2b519a9cd7df3a678443100e265d5e25ca763b7572a5104f5f3" [[package]] name = "appit" -version = "0.2.0" -source = "git+https://github.com/khonsulabs/appit#ee4528cab24ce619fa8c8c0c859c838f73da211f" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da2d843ba328a4f80746ccd2b4f7969c4a611c1b4e0c6666acc0c74166dd4614" dependencies = [ "winit", ] @@ -841,8 +842,9 @@ dependencies = [ [[package]] name = "figures" -version = "0.2.2" -source = "git+https://github.com/khonsulabs/figures#dcfe2381e32e8528cb85262662f5b40d32c95dfa" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a43add57113d87718cf315510434cf30f84397d0ad5d62db1833b1001a1c5a9" dependencies = [ "bytemuck", "euclid", @@ -1292,8 +1294,9 @@ checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc" [[package]] name = "kludgine" -version = "0.7.0" -source = "git+https://github.com/khonsulabs/kludgine#9ab807932f2a5185cb775e93c1a8640b02dde38c" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13680642bf2341b359172f7bf5d3872fee98d91a72fc29e6fdb1eed827a3e92" dependencies = [ "ahash", "alot", diff --git a/Cargo.toml b/Cargo.toml index 68558a8..86ae7f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["cushy-macros", "guide/guide-examples"] [package] name = "cushy" -version = "0.2.0" +version = "0.3.0" edition = "2021" description = "A wgpu-powered graphical user interface (GUI) library with a reactive data model" repository = "https://github.com/khonsulabs/cushy" @@ -22,11 +22,8 @@ tokio = ["dep:tokio"] tokio-multi-thread = ["tokio", "tokio/rt-multi-thread"] [dependencies] -# kludgine = { version = "0.7.0", features = ["app"] } -kludgine = { git = "https://github.com/khonsulabs/kludgine", features = [ - "app", -] } -figures = { version = "0.2.1", git = "https://github.com/khonsulabs/figures" } +kludgine = { version = "0.8.0", features = ["app"] } +figures = { version = "0.3.0" } alot = "0.3" interner = "0.2.1" kempt = "0.2.1"