Bump version to 0.12

This commit is contained in:
dbr 2024-05-05 12:24:08 +09:30
parent b74f4eb8eb
commit 27a0e2284c
7 changed files with 15 additions and 15 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "imgui-glium-renderer" name = "imgui-glium-renderer"
version = "0.11.0" version = "0.12.0"
edition = "2021" edition = "2021"
description = "Glium renderer for the imgui crate" description = "Glium renderer for the imgui crate"
homepage = "https://github.com/imgui-rs/imgui-rs" homepage = "https://github.com/imgui-rs/imgui-rs"
@ -11,7 +11,7 @@ categories = ["gui", "rendering"]
[dependencies] [dependencies]
glium = { version = "0.34.0", default-features = false } glium = { version = "0.34.0", default-features = false }
imgui = { version = "0.11.0", path = "../imgui" } imgui = { version = "0.12.0", path = "../imgui" }
[dev-dependencies] [dev-dependencies]
glium = { version = "0.34.0", default-features = false, features = ["glutin_backend"] } glium = { version = "0.34.0", default-features = false, features = ["glutin_backend"] }

View File

@ -1,6 +1,6 @@
[package] [package]
name = "imgui-glow-renderer" name = "imgui-glow-renderer"
version = "0.11.0" version = "0.12.0"
edition = "2021" edition = "2021"
description = "glow renderer for the imgui crate" description = "glow renderer for the imgui crate"
homepage = "https://github.com/imgui-rs/imgui-rs" homepage = "https://github.com/imgui-rs/imgui-rs"
@ -9,14 +9,14 @@ license = "MIT OR Apache-2.0"
categories = ["gui", "rendering"] categories = ["gui", "rendering"]
[dependencies] [dependencies]
imgui = { version = "0.11.0", path = "../imgui" } imgui = { version = "0.12.0", path = "../imgui" }
glow = "0.13.1" glow = "0.13.1"
memoffset = "0.9" memoffset = "0.9"
[dev-dependencies] [dev-dependencies]
glutin = "0.31.1" glutin = "0.31.1"
glutin-winit = "0.4.2" glutin-winit = "0.4.2"
imgui-winit-support = { version = "0.11.0", path = "../imgui-winit-support" } imgui-winit-support = { version = "0.12.0", path = "../imgui-winit-support" }
image = "0.23" image = "0.23"
raw-window-handle = "0.5.0" raw-window-handle = "0.5.0"
winit = { version = "0.29.3", features = ["rwh_05"] } winit = { version = "0.29.3", features = ["rwh_05"] }

View File

@ -1,6 +1,6 @@
[package] [package]
name = "imgui-sdl2-support" name = "imgui-sdl2-support"
version = "0.11.0" version = "0.12.0"
edition = "2021" edition = "2021"
authors = ["The imgui-rs Developers"] authors = ["The imgui-rs Developers"]
description = "sdl2 support code for the imgui crate" description = "sdl2 support code for the imgui crate"
@ -11,10 +11,10 @@ license = "MIT OR Apache-2.0"
categories = ["gui"] categories = ["gui"]
[dependencies] [dependencies]
imgui = { version = "0.11.0", path = "../imgui" } imgui = { version = "0.12.0", path = "../imgui" }
sdl2 = "0.34.5" sdl2 = "0.34.5"
[dev-dependencies] [dev-dependencies]
glow = "0.13.1" glow = "0.13.1"
imgui-glow-renderer = { version = "0.11.0", path = "../imgui-glow-renderer" } imgui-glow-renderer = { version = "0.12.0", path = "../imgui-glow-renderer" }
sdl2 = { version = "0.34.5", features = ["bundled", "static-link"] } sdl2 = { version = "0.34.5", features = ["bundled", "static-link"] }

View File

@ -1,6 +1,6 @@
[package] [package]
name = "imgui-sys" name = "imgui-sys"
version = "0.11.0" version = "0.12.0"
edition = "2021" edition = "2021"
description = "Raw FFI bindings to dear imgui" description = "Raw FFI bindings to dear imgui"
homepage = "https://github.com/imgui-rs/imgui-rs" homepage = "https://github.com/imgui-rs/imgui-rs"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "imgui-winit-glow-renderer-viewports" name = "imgui-winit-glow-renderer-viewports"
version = "0.11.0" version = "0.12.0"
edition = "2021" edition = "2021"
description = "combined platform + renderer using the docking branch viewport feature" description = "combined platform + renderer using the docking branch viewport feature"
homepage = "https://github.com/imgui-rs/imgui-rs" homepage = "https://github.com/imgui-rs/imgui-rs"
@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
imgui = { version = "0.11.0", path="../imgui", features=["docking"] } imgui = { version = "0.12.0", path="../imgui", features=["docking"] }
glow = "0.13.1" glow = "0.13.1"
glutin = "0.31.1" glutin = "0.31.1"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "imgui-winit-support" name = "imgui-winit-support"
version = "0.11.0" version = "0.12.0"
edition = "2021" edition = "2021"
description = "winit support code for the imgui crate" description = "winit support code for the imgui crate"
homepage = "https://github.com/imgui-rs/imgui-rs" homepage = "https://github.com/imgui-rs/imgui-rs"
@ -10,5 +10,5 @@ license = "MIT OR Apache-2.0"
categories = ["gui"] categories = ["gui"]
[dependencies] [dependencies]
imgui = { version = "0.11.0", path = "../imgui" } imgui = { version = "0.12.0", path = "../imgui" }
winit = { version = "0.29.3", default-features = false } winit = { version = "0.29.3", default-features = false }

View File

@ -1,6 +1,6 @@
[package] [package]
name = "imgui" name = "imgui"
version = "0.11.0" version = "0.12.0"
edition = "2021" edition = "2021"
description = "High-level Rust bindings to dear imgui" description = "High-level Rust bindings to dear imgui"
homepage = "https://github.com/imgui-rs/imgui-rs" homepage = "https://github.com/imgui-rs/imgui-rs"
@ -17,7 +17,7 @@ features = ["freetype", "docking", "tables-api"]
[dependencies] [dependencies]
bitflags = "1" bitflags = "1"
imgui-sys = { version = "0.11.0", path = "../imgui-sys" } imgui-sys = { version = "0.12.0", path = "../imgui-sys" }
mint = "0.5.6" mint = "0.5.6"
parking_lot = "0.12" parking_lot = "0.12"
cfg-if = "1" cfg-if = "1"