Preparing v0.2.0

This commit is contained in:
Jonathan Johnson 2023-12-27 19:08:34 -08:00
parent f73452c880
commit 98f8d3a43d
No known key found for this signature in database
GPG key ID: A66D6A34D6620579
6 changed files with 10 additions and 10 deletions

View file

@ -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/",

View file

@ -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

4
Cargo.lock generated
View file

@ -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",

View file

@ -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"

View file

@ -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

View file

@ -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"