From 17c133a02e2437d01e699e1b7069de2a41275049 Mon Sep 17 00:00:00 2001 From: Jerome Humbert <djeedai@gmail.com> Date: Sat, 5 Mar 2022 18:27:28 +0000 Subject: [PATCH] v0.3.3 --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- README.md | 16 ++++++++-------- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98d4ea3..1237b92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ 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.3.3] - 2022-03-05 ### Added diff --git a/Cargo.toml b/Cargo.toml index 2ce63e1..8f7cdac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_tweening" -version = "0.3.2" +version = "0.3.3" authors = ["François Mockers <mockersf@gmail.com>", "Jerome Humbert <djeedai@gmail.com>"] edition = "2021" description = "Tweening animation plugin for the Bevy game engine" diff --git a/README.md b/README.md index 77eef4e..577b0a8 100644 --- a/README.md +++ b/README.md @@ -174,7 +174,7 @@ The process is similar to custom components, creating a custom lens for the cust ## Examples -See the [`examples/`](https://github.com/djeedai/bevy_tweening/tree/main/examples) folder. +See the [`examples/`](https://github.com/djeedai/bevy_tweening/tree/22bfe239a35fdeabf1c671a3cd4bae363948d007/examples) folder. ### [`menu`](examples/menu.rs) @@ -182,7 +182,7 @@ See the [`examples/`](https://github.com/djeedai/bevy_tweening/tree/main/example cargo run --example menu --features="bevy/bevy_winit" ``` - + ### [`sprite_color`](examples/sprite_color.rs) @@ -190,7 +190,7 @@ cargo run --example menu --features="bevy/bevy_winit" cargo run --example sprite_color --features="bevy/bevy_winit" ``` - + ### [`transform_rotation`](examples/transform_rotation.rs) @@ -198,7 +198,7 @@ cargo run --example sprite_color --features="bevy/bevy_winit" cargo run --example transform_rotation --features="bevy/bevy_winit" ``` - + ### [`transform_translation`](examples/transform_translation.rs) @@ -206,7 +206,7 @@ cargo run --example transform_rotation --features="bevy/bevy_winit" cargo run --example transform_translation --features="bevy/bevy_winit" ``` - + ### [`colormaterial_color`](examples/colormaterial_color.rs) @@ -214,7 +214,7 @@ cargo run --example transform_translation --features="bevy/bevy_winit" cargo run --example colormaterial_color --features="bevy/bevy_winit" ``` - + ### [`ui_position`](examples/ui_position.rs) @@ -222,7 +222,7 @@ cargo run --example colormaterial_color --features="bevy/bevy_winit" cargo run --example ui_position --features="bevy/bevy_winit" ``` - + ### [`sequence`](examples/sequence.rs) @@ -230,7 +230,7 @@ cargo run --example ui_position --features="bevy/bevy_winit" cargo run --example sequence --features="bevy/bevy_winit" ``` - + ## Ease Functions -- GitLab