Bump to 0.9.0!

This commit is contained in:
dbr 2022-11-30 10:10:19 +10:30
parent b8ddd078c1
commit 2eb3f8c337
6 changed files with 13 additions and 13 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-glium-renderer"
version = "0.8.1-alpha.0"
version = "0.9.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.32.1", default-features = false }
imgui = { version = "0.8.1-alpha.0", path = "../imgui" }
imgui = { version = "0.9.0", path = "../imgui" }

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-glow-renderer"
version = "0.8.1-alpha.0"
version = "0.9.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.8.1-alpha.0", path = "../imgui" }
imgui = { version = "0.9.0", path = "../imgui" }
glow = "0.10.0"
memoffset = "0.6.4"
[dev-dependencies]
glutin = "0.29.1"
imgui-winit-support = { version = "0.8.1-alpha.0", path = "../imgui-winit-support" }
imgui-winit-support = { version = "0.9.0", path = "../imgui-winit-support" }
image = "0.23"
[features]

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-sdl2-support"
version = "0.8.1-alpha.0"
version = "0.9.0"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "sdl2 support code for the imgui crate"
@ -10,10 +10,10 @@ license = "MIT/Apache-2.0"
categories = ["gui"]
[dependencies]
imgui = { version = "0.8.1-alpha.0", path = "../imgui" }
imgui = { version = "0.9.0", path = "../imgui" }
sdl2 = "0.34.5"
[dev-dependencies]
glow = "0.10.0"
imgui-glow-renderer = { version = "0.8.1-alpha.0", path = "../imgui-glow-renderer" }
imgui-glow-renderer = { version = "0.9.0", path = "../imgui-glow-renderer" }
sdl2 = { version = "0.34.5", features = ["bundled", "static-link"] }

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-sys"
version = "0.8.1-alpha.0"
version = "0.9.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.8.1-alpha.0"
version = "0.9.0"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "winit support code for the imgui crate"
@ -10,5 +10,5 @@ license = "MIT/Apache-2.0"
categories = ["gui"]
[dependencies]
imgui = { version = "0.8.1-alpha.0", path = "../imgui" }
imgui = { version = "0.9.0", path = "../imgui" }
winit = { version = "0.27.2", default-features = false }

View File

@ -1,6 +1,6 @@
[package]
name = "imgui"
version = "0.8.1-alpha.0"
version = "0.9.0"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "High-level Rust bindings to dear imgui"
@ -17,7 +17,7 @@ features = ["freetype", "docking", "tables-api"]
[dependencies]
bitflags = "1"
imgui-sys = { version = "0.8.1-alpha.0", path = "../imgui-sys" }
imgui-sys = { version = "0.9.0", path = "../imgui-sys" }
mint = "0.5.6"
parking_lot = "0.12"
cfg-if = "1"