mirror of
https://github.com/danbulant/cushy
synced 2026-05-19 04:08:38 +00:00
Preparing v0.2.0
This commit is contained in:
parent
f73452c880
commit
98f8d3a43d
6 changed files with 10 additions and 10 deletions
|
|
@ -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/",
|
||||
|
|
|
|||
|
|
@ -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
4
Cargo.lock
generated
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||

|
||||
[](https://crates.io/crates/cushy)
|
||||
[](https://cushy.rs/main/docs/cushy/)
|
||||
[](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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue