From c42d269776dc3af1b1dc8dd9aee213ad9ee9e674 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Sat, 25 Apr 2020 02:10:03 +0200 Subject: [PATCH] Bump version :tada: --- CHANGELOG.md | 6 +++++- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9acc30b..60ea364 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ 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] + + +## [0.4.0] - 2020-04-25 ### Added - `Task::succeed`, which replaces the old `Task::new`. [#66] - `Default` implementation for `ui::widget::slider::State`. @@ -234,7 +237,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Coffee starts being developed. -[Unreleased]: https://github.com/hecrj/coffee/compare/0.3.2...HEAD +[Unreleased]: https://github.com/hecrj/coffee/compare/0.4.0...HEAD +[0.4.0]: https://github.com/hecrj/coffee/compare/0.3.2...0.4.0 [0.3.2]: https://github.com/hecrj/coffee/compare/0.3.1...0.3.2 [0.3.1]: https://github.com/hecrj/coffee/compare/0.3.0...0.3.1 [0.3.0]: https://github.com/hecrj/coffee/compare/0.2.0...0.3.0 diff --git a/Cargo.toml b/Cargo.toml index 27e48f9..0909b9e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "coffee" -version = "0.4.0-alpha" +version = "0.4.0" authors = ["Héctor Ramón Jiménez "] edition = "2018" description = "An opinionated 2D game engine focused on simplicity, explicitness, and type-safety" diff --git a/README.md b/README.md index d0af1ce..e7c5205 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Add `coffee` as a dependency in your `Cargo.toml` and enable a graphics backend feature (`opengl`, `vulkan`, `metal`, `dx11`, or `dx12`): ```toml -coffee = { version = "0.3", features = ["opengl"] } +coffee = { version = "0.4", features = ["opengl"] } ``` Rust is quite slow in debug mode. If you experience performance issues when