From 07403f5802ac6d838d45da7ba57b4cd2bc536d3e Mon Sep 17 00:00:00 2001 From: 4bb4 <67376761+4bb4@users.noreply.github.com> Date: Sun, 19 Sep 2021 09:48:31 +0200 Subject: [PATCH] Bumped versions, prepared changelog for release --- CHANGELOG.md | 10 +++++++--- Cargo.toml | 4 ++-- implot-examples/implot-glium-demo/Cargo.lock | 4 ++-- implot-examples/implot-wgpu-demo/Cargo.lock | 4 ++-- implot-sys/Cargo.toml | 2 +- 5 files changed, 14 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3889cef..1303e3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,13 @@ # Changelog -## Unreleased +## v0.6.0 ### General notes -* Updated imgui-rs dependency to 0.7 -* Examples: updated wgpu dependency to 0.10 and imgui-wgpu to 0.17 +* Updated imgui-rs dependency to 0.7 (credit: @kylc) +* Examples: updated wgpu dependency to 0.10 and imgui-wgpu to 0.17 (credit: @kylc) + +### API changes +* None, but the minor version is increased anyway because I consider the + updated imgui-rs dependency an API change. ## v0.5.0 ### General notes diff --git a/Cargo.toml b/Cargo.toml index cb38c53..57e8ed1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "implot" -version = "0.5.0" +version = "0.6.0" edition = "2018" authors = ["Sandro Merkli", "implot-rs contributors"] description = "Rust bindings to https://github.com/epezent/implot" @@ -11,7 +11,7 @@ categories = ["gui", "api-bindings"] readme = "README.md" [dependencies] -implot-sys = { version = "0.5.0", path = "implot-sys" } +implot-sys = { version = "0.6.0", path = "implot-sys" } imgui = { version = "=0.7.0" } bitflags = "1.0" parking_lot = "0.11" diff --git a/implot-examples/implot-glium-demo/Cargo.lock b/implot-examples/implot-glium-demo/Cargo.lock index ec7142a..0364d0d 100644 --- a/implot-examples/implot-glium-demo/Cargo.lock +++ b/implot-examples/implot-glium-demo/Cargo.lock @@ -673,7 +673,7 @@ dependencies = [ [[package]] name = "implot" -version = "0.5.0" +version = "0.6.0" dependencies = [ "bitflags", "imgui", @@ -700,7 +700,7 @@ dependencies = [ [[package]] name = "implot-sys" -version = "0.5.0" +version = "0.6.0" dependencies = [ "cc", "imgui-sys", diff --git a/implot-examples/implot-wgpu-demo/Cargo.lock b/implot-examples/implot-wgpu-demo/Cargo.lock index 1c55204..dcd6257 100644 --- a/implot-examples/implot-wgpu-demo/Cargo.lock +++ b/implot-examples/implot-wgpu-demo/Cargo.lock @@ -613,7 +613,7 @@ dependencies = [ [[package]] name = "implot" -version = "0.5.0" +version = "0.6.0" dependencies = [ "bitflags", "imgui", @@ -624,7 +624,7 @@ dependencies = [ [[package]] name = "implot-sys" -version = "0.5.0" +version = "0.6.0" dependencies = [ "cc", "imgui-sys", diff --git a/implot-sys/Cargo.toml b/implot-sys/Cargo.toml index f7796e4..01e9d53 100644 --- a/implot-sys/Cargo.toml +++ b/implot-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "implot-sys" -version = "0.5.0" +version = "0.6.0" edition = "2018" authors = ["Sandro Merkli", "implot-rs contributors"] description = "Raw FFI bindings to implot"