diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..629038d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,20 @@ +# Changelog + +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). + +## v0.1.1 + +### Added + +- "Partial" constructors for all `Vectorlike` types: + - `Vector::from_x()`, `Vector::from_y()` + - `Point::from_x()`, `Point::from_y()` + - `Size::from_width()`, `Size::from_height()` +- `From` implementations for `Rect` and `SizedRect`. + +## v0.1.0 + +- Initial release. diff --git a/figures/Cargo.toml b/figures/Cargo.toml index b62c2f4..98b3bc5 100644 --- a/figures/Cargo.toml +++ b/figures/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "figures" -version = "0.1.0" +version = "0.1.1" edition = "2018" description = "A math library specialized for 2d screen graphics." repository = "https://github.com/khonsulabs/figures"