Releasing v0.2.0

This commit is contained in:
Jonathan Johnson 2023-12-27 15:16:50 -08:00
parent 1ff4b7b2a6
commit f5b8c8cf8b
No known key found for this signature in database
GPG key ID: A66D6A34D6620579
4 changed files with 9 additions and 9 deletions

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 (2023-12-27)
### Breaking Changes

2
Cargo.lock generated
View file

@ -60,7 +60,7 @@ checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
[[package]]
name = "appit"
version = "0.1.1"
version = "0.2.0"
dependencies = [
"winit",
]

View file

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

View file

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