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/), 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased ## v0.2.0 (2023-12-27)
### Breaking Changes ### Breaking Changes

2
Cargo.lock generated
View file

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

View file

@ -1,6 +1,6 @@
[package] [package]
name = "appit" name = "appit"
version = "0.1.1" version = "0.2.0"
edition = "2021" edition = "2021"
description = "A math library specialized for 2d screen graphics." description = "A math library specialized for 2d screen graphics."
repository = "https://github.com/khonsulabs/appit" 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) [![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) [![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 An opinionated wrapper for `winit` that provides a trait-based, multi-threaded
implementing multi-window applications. approach to implementing multi-window applications.
This crate's main type is `WindowBehavior`, a trait that provides functions for This crate's main type is `WindowBehavior`, a trait that provides functions for
nearly every `winit::event::WindowEvent`. This allows you to implement exactly nearly every `winit::event::WindowEvent`. This allows you to implement exactly
@ -40,7 +40,7 @@ fn main() {
## Project Status ## Project Status
This project is early in development as part of [Kludgine][kludgine] and 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 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. 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 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 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 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 [kludgine]: https://github.com/khonsulabs/kludgine
[ecton]: https://github.com/khonsulabs/ecton [ecton]: https://github.com/khonsulabs/ecton
[issues]: https://github.com/khonsulabs/gooey/issues [issues]: https://github.com/khonsulabs/cushy/issues