Skip to content

Commit 98f8d3a

Browse files
committed
Preparing v0.2.0
1 parent f73452c commit 98f8d3a

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.rustme/config.ron

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Configuration(
3434
// "msrv": "1.70",
3535
"ref-name": (
3636
default: "main",
37-
release: "v0.1.3",
37+
release: "v0.2.0",
3838
),
3939
"docs": (
4040
default: "https://khonsu.dev/cushy/main/docs/cushy/",

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## v0.2.0
99

1010
### Breaking Changes
1111

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "cushy"
5-
version = "0.1.3"
5+
version = "0.2.0"
66
edition = "2021"
77
description = "A wgpu-powered graphical user interface (GUI) library with a reactive data model"
88
repository = "https://github.com/khonsulabs/cushy"
@@ -33,7 +33,7 @@ tracing-subscriber = { version = "0.3", optional = true, features = [
3333
] }
3434
palette = "0.7.3"
3535
ahash = "0.8.6"
36-
cushy-macros = { version = "0.1.0", path = "cushy-macros" }
36+
cushy-macros = { version = "0.2.0", path = "cushy-macros" }
3737
arboard = "3.2.1"
3838
zeroize = "1.6.1"
3939
unicode-segmentation = "1.10.1"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![Cushy is considered alpha and unsupported](https://img.shields.io/badge/status-alpha-orange)
44
[![crate version](https://img.shields.io/crates/v/cushy.svg)](https://crates.io/crates/cushy)
5-
[![Documentation for `main` branch](https://img.shields.io/badge/docs-main-informational)](https://cushy.rs/main/docs/cushy/)
5+
[![Documentation for `main` branch](https://img.shields.io/badge/docs-main-informational)](https://khonsu.dev/cushy/main/docs/cushy/)
66

77
Cushy is an experimental Graphical User Interface (GUI) crate for the Rust
88
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
6565
pull requests, as it ensures changes fit the vision the maintainers have for
6666
Cushy.
6767

68-
[widget]: https://cushy.rs/main/docs/cushy/widget/trait.Widget.html
69-
[widgets]: https://cushy.rs/main/docs/cushy/widgets/index.html
68+
[widget]: https://khonsu.dev/cushy/main/docs/cushy/widget/trait.Widget.html
69+
[widgets]: https://khonsu.dev/cushy/main/docs/cushy/widgets/index.html
7070
[button-example]: https://github.com/khonsulabs/cushy/tree/main/examples/basic-button.rs
7171
[examples]: https://github.com/khonsulabs/cushy/tree/main/examples/
7272
[kludgine]: https://github.com/khonsulabs/kludgine

cushy-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cushy-macros"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
description = "Macros for the Cushy GUI framework"
66
repository = "https://github.com/khonsulabs/cushy"

0 commit comments

Comments
 (0)