From c85e73eca6456be9aa0fcd9d5b01663f7cb29733 Mon Sep 17 00:00:00 2001 From: Joonas Javanainen Date: Thu, 11 Oct 2018 23:14:38 +0300 Subject: [PATCH] Release: 0.0.21 --- CHANGELOG.markdown | 5 ++++- Cargo.toml | 4 ++-- imgui-examples/Cargo.toml | 8 ++++---- imgui-gfx-renderer/Cargo.toml | 6 +++--- imgui-glium-renderer/Cargo.toml | 6 +++--- imgui-glutin-support/Cargo.toml | 4 ++-- imgui-sys/Cargo.toml | 2 +- 7 files changed, 19 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index acb9345..bf7cff1 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.0.21] - 2018-10-11 + ### Added - `ImGui::mouse_down` @@ -393,7 +395,8 @@ by setting the environment variable `WINIT_HIDPI_FACTOR=1` if you use X11. - Initial release with cimgui/imgui 1.44, glium 0.9 -[Unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.0.20...HEAD +[Unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.0.21...HEAD +[0.0.21]: https://github.com/Gekkio/imgui-rs/compare/v0.0.20...v0.0.21 [0.0.20]: https://github.com/Gekkio/imgui-rs/compare/v0.0.19...v0.0.20 [0.0.19]: https://github.com/Gekkio/imgui-rs/compare/v0.0.18...v0.0.19 [0.0.18]: https://github.com/Gekkio/imgui-rs/compare/v0.0.17...v0.0.18 diff --git a/Cargo.toml b/Cargo.toml index 916efbf..66132b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imgui" -version = "0.0.21-pre" +version = "0.0.21" authors = ["Joonas Javanainen ", "imgui-rs contributors"] description = "High-level Rust bindings to dear imgui" homepage = "https://github.com/Gekkio/imgui-rs" @@ -13,7 +13,7 @@ readme = "README.markdown" travis-ci = { repository = "Gekkio/imgui-rs" } [dependencies] -imgui-sys = { version = "0.0.21-pre", path = "imgui-sys" } +imgui-sys = { version = "0.0.21", path = "imgui-sys" } [workspace] members = ["imgui-examples", "imgui-sys", "imgui-gfx-renderer", "imgui-glium-renderer", "imgui-glutin-support"] diff --git a/imgui-examples/Cargo.toml b/imgui-examples/Cargo.toml index 0c8a168..f3ecae8 100644 --- a/imgui-examples/Cargo.toml +++ b/imgui-examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imgui-examples" -version = "0.0.21-pre" +version = "0.0.21" authors = ["Joonas Javanainen ", "imgui-rs contributors"] description = "imgui crate examples" homepage = "https://github.com/Gekkio/imgui-rs" @@ -13,6 +13,6 @@ gfx = "0.17" gfx_window_glutin = "0.26" glium = { version = "0.22", default-features = true } glutin = "0.18" -imgui = { version = "0.0.21-pre", path = "../" } -imgui-gfx-renderer = { version = "0.0.21-pre", path = "../imgui-gfx-renderer" } -imgui-glium-renderer = { version = "0.0.21-pre", path = "../imgui-glium-renderer" } +imgui = { version = "0.0.21", path = "../" } +imgui-gfx-renderer = { version = "0.0.21", path = "../imgui-gfx-renderer" } +imgui-glium-renderer = { version = "0.0.21", path = "../imgui-glium-renderer" } diff --git a/imgui-gfx-renderer/Cargo.toml b/imgui-gfx-renderer/Cargo.toml index 878d4e6..19c6435 100644 --- a/imgui-gfx-renderer/Cargo.toml +++ b/imgui-gfx-renderer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imgui-gfx-renderer" -version = "0.0.21-pre" +version = "0.0.21" authors = ["Joonas Javanainen ", "imgui-rs contributors"] description = "gfx renderer for the imgui crate" homepage = "https://github.com/Gekkio/imgui-rs" @@ -13,5 +13,5 @@ travis-ci = { repository = "Gekkio/imgui-rs" } [dependencies] gfx = "0.17" -imgui = { version = "0.0.21-pre", path = "../" } -imgui-sys = { version = "0.0.21-pre", path = "../imgui-sys", features = ["gfx"] } +imgui = { version = "0.0.21", path = "../" } +imgui-sys = { version = "0.0.21", path = "../imgui-sys", features = ["gfx"] } diff --git a/imgui-glium-renderer/Cargo.toml b/imgui-glium-renderer/Cargo.toml index 6b3334b..35d0ca1 100644 --- a/imgui-glium-renderer/Cargo.toml +++ b/imgui-glium-renderer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imgui-glium-renderer" -version = "0.0.21-pre" +version = "0.0.21" authors = ["Joonas Javanainen ", "imgui-rs contributors"] description = "Glium renderer for the imgui crate" homepage = "https://github.com/Gekkio/imgui-rs" @@ -13,5 +13,5 @@ travis-ci = { repository = "Gekkio/imgui-rs" } [dependencies] glium = { version = "0.22", default-features = false } -imgui = { version = "0.0.21-pre", path = "../" } -imgui-sys = { version = "0.0.21-pre", path = "../imgui-sys", features = ["glium"] } +imgui = { version = "0.0.21", path = "../" } +imgui-sys = { version = "0.0.21", path = "../imgui-sys", features = ["glium"] } diff --git a/imgui-glutin-support/Cargo.toml b/imgui-glutin-support/Cargo.toml index 3051fbf..ad19ec7 100644 --- a/imgui-glutin-support/Cargo.toml +++ b/imgui-glutin-support/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imgui-glutin-support" -version = "0.0.21-pre" +version = "0.0.21" authors = ["Joonas Javanainen ", "imgui-rs contributors"] description = "glutin support code for the imgui crate" homepage = "https://github.com/Gekkio/imgui-rs" @@ -13,4 +13,4 @@ travis-ci = { repository = "Gekkio/imgui-rs" } [dependencies] glutin = ">= 0.17, <= 0.18" -imgui = { version = "0.0.21-pre", path = "../" } +imgui = { version = "0.0.21", path = "../" } diff --git a/imgui-sys/Cargo.toml b/imgui-sys/Cargo.toml index b00b0d4..00e82a8 100644 --- a/imgui-sys/Cargo.toml +++ b/imgui-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imgui-sys" -version = "0.0.21-pre" +version = "0.0.21" authors = ["Joonas Javanainen ", "imgui-rs contributors"] description = "Raw FFI bindings to dear imgui" homepage = "https://github.com/Gekkio/imgui-rs"