issuing version update!

This commit is contained in:
Jack Mac 2021-09-17 12:36:47 -04:00
parent dacc2c735e
commit 4809d031b7
7 changed files with 14 additions and 13 deletions

View File

@ -735,7 +735,8 @@ As mentioned, the 0.6.1 release of `imgui-winit-support` has been yanked.
- Initial release with cimgui/imgui 1.44, glium 0.9
[unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.7.0...HEAD
[unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.8.0...HEAD
[0.8.0]: https://github.com/Gekkio/imgui-rs/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/Gekkio/imgui-rs/compare/v0.6.1...v0.7.0
[0.6.1]: https://github.com/Gekkio/imgui-rs/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/Gekkio/imgui-rs/compare/v0.5.0...v0.6.0

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-gfx-renderer"
version = "0.7.0"
version = "0.8.0"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "gfx renderer for the imgui crate"
@ -16,7 +16,7 @@ default = ["opengl"]
[dependencies]
gfx = "0.18"
imgui = { version = "0.7.0", path = "../imgui" }
imgui = { version = "0.8.0", path = "../imgui" }
[target.'cfg(windows)'.build-dependencies]
winapi = { version = "0.3", features = ["d3dcompiler"] }

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-glium-renderer"
version = "0.7.0"
version = "0.8.0"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "Glium renderer for the imgui crate"
@ -11,4 +11,4 @@ categories = ["gui", "rendering"]
[dependencies]
glium = { version = ">=0.28, < 0.31", default-features = false }
imgui = { version = "0.7.0", path = "../imgui" }
imgui = { version = "0.8.0", path = "../imgui" }

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-glow-renderer"
version = "0.7.0"
version = "0.8.0"
edition = "2018"
authors = ["jmaargh and the imgui-rs Developers"]
description = "glow renderer for the imgui crate"
@ -10,13 +10,13 @@ license = "MIT/Apache-2.0"
categories = ["gui", "rendering"]
[dependencies]
imgui = { version = "0.7.0", path = "../imgui" }
imgui = { version = "0.8.0", path = "../imgui" }
glow = "0.10.0"
memoffset = "0.6.4"
[dev-dependencies]
glutin = "0.27.0"
imgui-winit-support = { version = "0.7.1", path = "../imgui-winit-support" }
imgui-winit-support = { version = "0.8.0", path = "../imgui-winit-support" }
image = "0.23"
[features]

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-sys"
version = "0.7.0"
version = "0.8.0"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "Raw FFI bindings to dear imgui"

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-winit-support"
version = "0.7.1"
version = "0.8.0"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "winit support code for the imgui crate"
@ -10,7 +10,7 @@ license = "MIT/Apache-2.0"
categories = ["gui"]
[dependencies]
imgui = { version = "0.7.0", path = "../imgui" }
imgui = { version = "0.8.0", path = "../imgui" }
winit-19 = { version = ">= 0.16, < 0.20", package = "winit", optional = true }
winit-20 = { version = ">= 0.20, < 0.22", package = "winit", optional = true }
winit-22 = { version = "0.22", package = "winit", optional = true }

View File

@ -1,6 +1,6 @@
[package]
name = "imgui"
version = "0.7.0"
version = "0.8.0"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "High-level Rust bindings to dear imgui"
@ -14,7 +14,7 @@ exclude = ["/resources"]
[dependencies]
bitflags = "1"
imgui-sys = { version = "0.7.0", path = "../imgui-sys" }
imgui-sys = { version = "0.8.0", path = "../imgui-sys" }
parking_lot = "0.11"
[features]