From f5b8c8cf8b957fa3d720572a2bace33587eaf65d Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Wed, 27 Dec 2023 15:16:50 -0800 Subject: [PATCH] Releasing v0.2.0 --- CHANGELOG.md | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 12 ++++++------ 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 794b04d..bd20e12 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 (2023-12-27) ### Breaking Changes diff --git a/Cargo.lock b/Cargo.lock index ccd2512..fec35ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -60,7 +60,7 @@ checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04" [[package]] name = "appit" -version = "0.1.1" +version = "0.2.0" dependencies = [ "winit", ] diff --git a/Cargo.toml b/Cargo.toml index 62f793d..873c93e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "appit" -version = "0.1.1" +version = "0.2.0" edition = "2021" description = "A math library specialized for 2d screen graphics." repository = "https://github.com/khonsulabs/appit" diff --git a/README.md b/README.md index d6296a8..5f182a9 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ [![crate version](https://img.shields.io/crates/v/appit.svg)](https://crates.io/crates/appit) [![Documentation for `main` branch](https://img.shields.io/badge/docs-main-informational)](https://khonsulabs.github.io/appit/main/appit) -An opinionated wrapper for `winit` that provides a trait-based approach to -implementing multi-window applications. +An opinionated wrapper for `winit` that provides a trait-based, multi-threaded +approach to implementing multi-window applications. This crate's main type is `WindowBehavior`, a trait that provides functions for nearly every `winit::event::WindowEvent`. This allows you to implement exactly @@ -40,7 +40,7 @@ fn main() { ## Project Status This project is early in development as part of [Kludgine][kludgine] and -[Gooey][gooey]. It is considered alpha and unsupported at this time, and the +[Cushy][cushy]. It is considered alpha and unsupported at this time, and the primary focus for [@ecton][ecton] is to use this for his own projects. Feature requests and bug fixes will be prioritized based on @ecton's own needs. @@ -48,9 +48,9 @@ If you would like to contribute, bug fixes are always appreciated. Before working on a new feature, please [open an issue][issues] proposing the feature 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 -Gooey. +Cushy. -[gooey]: https://github.com/khonsulabs/gooey +[cushy]: https://github.com/khonsulabs/cushy [kludgine]: https://github.com/khonsulabs/kludgine [ecton]: https://github.com/khonsulabs/ecton -[issues]: https://github.com/khonsulabs/gooey/issues +[issues]: https://github.com/khonsulabs/cushy/issues