From b71168dc526ef2c1d956ba1f6bb631199cb6662e Mon Sep 17 00:00:00 2001 From: Joe Clay <27cupsofcoffee@gmail.com> Date: Wed, 2 Sep 2020 18:04:53 +0100 Subject: [PATCH] Release 0.5.0 --- CHANGELOG.md | 5 +++-- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cdd6c2d..1347a731 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ From 0.4.0 onwards, all breaking changes will be explicitly labelled, to make it This project adheres to Semantic Versioning. -## [Upcoming] +## [0.5.0] - 2020-09-02 ### Added @@ -562,7 +562,8 @@ for. This can be useful when implementing more complex animation behaviors. ([@V * Initial release! -[Upcoming]: https://github.com/17cupsofcoffee/tetra/compare/0.4.2..HEAD +[Upcoming]: https://github.com/17cupsofcoffee/tetra/compare/0.5.0..HEAD +[0.5.0]: https://github.com/17cupsofcoffee/tetra/compare/0.4.2..0.5.0 [0.4.2]: https://github.com/17cupsofcoffee/tetra/compare/0.4.1..0.4.2 [0.4.1]: https://github.com/17cupsofcoffee/tetra/compare/0.4.0..0.4.1 [0.4.0]: https://github.com/17cupsofcoffee/tetra/compare/0.3.6..0.4.0 diff --git a/Cargo.toml b/Cargo.toml index 24eda62a..72759947 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tetra" description = "A simple 2D game framework written in Rust" -version = "0.4.2" +version = "0.5.0" edition = "2018" authors = ["Joe Clay <27cupsofcoffee@gmail.com>"] license = "MIT" diff --git a/README.md b/README.md index 96526dab..48f48f33 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Tetra is a simple 2D game framework written in Rust. It uses SDL2 for event hand To add Tetra to your project, add the following line to your `Cargo.toml` file: ```toml -tetra = "0.4" +tetra = "0.5" ``` You will also need to install the SDL2 native libraries - full details are provided in the [documentation](https://tetra.seventeencups.net/installation). diff --git a/src/lib.rs b/src/lib.rs index 810a9d81..5aa9b980 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -21,7 +21,7 @@ //! To add Tetra to your project, add the following line to your `Cargo.toml` file: //! //! ```toml -//! tetra = "0.4" +//! tetra = "0.5" //! ``` //! //! You will also need to install the SDL2 native libraries - full details are provided in the [documentation](https://tetra.seventeencups.net/installation).