Skip to content

Commit

Permalink
Bump to v0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
dbr committed Jan 16, 2023
1 parent 068275e commit fcc4263
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions imgui-glium-renderer/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "imgui-glium-renderer"
version = "0.9.0"
version = "0.10.0"
edition = "2018"
description = "Glium renderer for the imgui crate"
homepage = "https://github.com/imgui-rs/imgui-rs"
Expand All @@ -11,7 +11,7 @@ categories = ["gui", "rendering"]

[dependencies]
glium = { version = "0.32.1", default-features = false }
imgui = { version = "0.9.0", path = "../imgui" }
imgui = { version = "0.10.0", path = "../imgui" }

[dev-dependencies]
imgui-winit-support = {path = "../imgui-winit-support"}
6 changes: 3 additions & 3 deletions imgui-glow-renderer/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "imgui-glow-renderer"
version = "0.9.0"
version = "0.10.0"
edition = "2018"
description = "glow renderer for the imgui crate"
homepage = "https://github.com/imgui-rs/imgui-rs"
Expand All @@ -9,13 +9,13 @@ license = "MIT/Apache-2.0"
categories = ["gui", "rendering"]

[dependencies]
imgui = { version = "0.9.0", path = "../imgui" }
imgui = { version = "0.10.0", path = "../imgui" }
glow = "0.10.0"
memoffset = "0.6.4"

[dev-dependencies]
glutin = "0.29.1"
imgui-winit-support = { version = "0.9.0", path = "../imgui-winit-support" }
imgui-winit-support = { version = "0.10.0", path = "../imgui-winit-support" }
image = "0.23"

[features]
Expand Down
6 changes: 3 additions & 3 deletions imgui-sdl2-support/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "imgui-sdl2-support"
version = "0.9.0"
version = "0.10.0"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "sdl2 support code for the imgui crate"
Expand All @@ -11,10 +11,10 @@ license = "MIT/Apache-2.0"
categories = ["gui"]

[dependencies]
imgui = { version = "0.9.0", path = "../imgui" }
imgui = { version = "0.10.0", path = "../imgui" }
sdl2 = "0.34.5"

[dev-dependencies]
glow = "0.10.0"
imgui-glow-renderer = { version = "0.9.0", path = "../imgui-glow-renderer" }
imgui-glow-renderer = { version = "0.10.0", path = "../imgui-glow-renderer" }
sdl2 = { version = "0.34.5", features = ["bundled", "static-link"] }
2 changes: 1 addition & 1 deletion imgui-sys/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "imgui-sys"
version = "0.9.0"
version = "0.10.0"
edition = "2018"
description = "Raw FFI bindings to dear imgui"
homepage = "https://github.com/imgui-rs/imgui-rs"
Expand Down
4 changes: 2 additions & 2 deletions imgui-winit-support/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "imgui-winit-support"
version = "0.9.0"
version = "0.10.0"
edition = "2018"
description = "winit support code for the imgui crate"
homepage = "https://github.com/imgui-rs/imgui-rs"
Expand All @@ -10,5 +10,5 @@ license = "MIT/Apache-2.0"
categories = ["gui"]

[dependencies]
imgui = { version = "0.9.0", path = "../imgui" }
imgui = { version = "0.10.0", path = "../imgui" }
winit = { version = "0.27.2", default-features = false }
4 changes: 2 additions & 2 deletions imgui/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "imgui"
version = "0.9.0"
version = "0.10.0"
edition = "2018"
description = "High-level Rust bindings to dear imgui"
homepage = "https://github.com/imgui-rs/imgui-rs"
Expand All @@ -17,7 +17,7 @@ features = ["freetype", "docking", "tables-api"]

[dependencies]
bitflags = "1"
imgui-sys = { version = "0.9.0", path = "../imgui-sys" }
imgui-sys = { version = "0.10.0", path = "../imgui-sys" }
mint = "0.5.6"
parking_lot = "0.12"
cfg-if = "1"
Expand Down

0 comments on commit fcc4263

Please sign in to comment.