From 98f8d3a43dfae6f168472969d55f85e4b62d2970 Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Wed, 27 Dec 2023 19:08:34 -0800 Subject: [PATCH] Preparing v0.2.0 --- .rustme/config.ron | 2 +- CHANGELOG.md | 2 +- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- README.md | 6 +++--- cushy-macros/Cargo.toml | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.rustme/config.ron b/.rustme/config.ron index 6122b39..805e1fb 100644 --- a/.rustme/config.ron +++ b/.rustme/config.ron @@ -34,7 +34,7 @@ Configuration( // "msrv": "1.70", "ref-name": ( default: "main", - release: "v0.1.3", + release: "v0.2.0", ), "docs": ( default: "https://khonsu.dev/cushy/main/docs/cushy/", diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cad4c3..a1c829f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## v0.2.0 ### Breaking Changes diff --git a/Cargo.lock b/Cargo.lock index 4c56858..e65acd8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -570,7 +570,7 @@ checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991" [[package]] name = "cushy" -version = "0.1.3" +version = "0.2.0" dependencies = [ "ahash", "alot", @@ -592,7 +592,7 @@ dependencies = [ [[package]] name = "cushy-macros" -version = "0.1.0" +version = "0.2.0" dependencies = [ "attribute-derive", "insta", diff --git a/Cargo.toml b/Cargo.toml index 5350a61..093bbf2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "cushy" -version = "0.1.3" +version = "0.2.0" edition = "2021" description = "A wgpu-powered graphical user interface (GUI) library with a reactive data model" repository = "https://github.com/khonsulabs/cushy" @@ -33,7 +33,7 @@ tracing-subscriber = { version = "0.3", optional = true, features = [ ] } palette = "0.7.3" ahash = "0.8.6" -cushy-macros = { version = "0.1.0", path = "cushy-macros" } +cushy-macros = { version = "0.2.0", path = "cushy-macros" } arboard = "3.2.1" zeroize = "1.6.1" unicode-segmentation = "1.10.1" diff --git a/README.md b/README.md index b910e9e..a141fb2 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![Cushy is considered alpha and unsupported](https://img.shields.io/badge/status-alpha-orange) [![crate version](https://img.shields.io/crates/v/cushy.svg)](https://crates.io/crates/cushy) -[![Documentation for `main` branch](https://img.shields.io/badge/docs-main-informational)](https://cushy.rs/main/docs/cushy/) +[![Documentation for `main` branch](https://img.shields.io/badge/docs-main-informational)](https://khonsu.dev/cushy/main/docs/cushy/) Cushy is an experimental Graphical User Interface (GUI) crate for the Rust programming language. It features a reactive data model and aims to enable @@ -65,8 +65,8 @@ and problem it aims to solve. Doing so will help prevent friction in merging pull requests, as it ensures changes fit the vision the maintainers have for Cushy. -[widget]: https://cushy.rs/main/docs/cushy/widget/trait.Widget.html -[widgets]: https://cushy.rs/main/docs/cushy/widgets/index.html +[widget]: https://khonsu.dev/cushy/main/docs/cushy/widget/trait.Widget.html +[widgets]: https://khonsu.dev/cushy/main/docs/cushy/widgets/index.html [button-example]: https://github.com/khonsulabs/cushy/tree/main/examples/basic-button.rs [examples]: https://github.com/khonsulabs/cushy/tree/main/examples/ [kludgine]: https://github.com/khonsulabs/kludgine diff --git a/cushy-macros/Cargo.toml b/cushy-macros/Cargo.toml index fcd5ed6..2234cbd 100644 --- a/cushy-macros/Cargo.toml +++ b/cushy-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cushy-macros" -version = "0.1.0" +version = "0.2.0" edition = "2021" description = "Macros for the Cushy GUI framework" repository = "https://github.com/khonsulabs/cushy"