Bump version

This commit is contained in:
dbr 2023-04-05 21:49:48 +09:30
parent fcbb8e7ee4
commit 197128840c
8 changed files with 16 additions and 16 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-examples"
version = "0.0.0"
version = "0.1.0"
edition = "2018"
description = "imgui crate examples using Glium backend"
homepage = "https://github.com/imgui-rs/imgui-rs"

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-glow-renderer"
version = "0.10.0"
version = "0.11.0"
edition = "2018"
description = "glow renderer for the imgui crate"
homepage = "https://github.com/imgui-rs/imgui-rs"
@ -9,13 +9,13 @@ license = "MIT/Apache-2.0"
categories = ["gui", "rendering"]
[dependencies]
imgui = { version = "0.10.0", path = "../imgui" }
imgui = { version = "0.11.0", path = "../imgui" }
glow = "0.12.0"
memoffset = "0.6.4"
[dev-dependencies]
glutin = "0.29.1"
imgui-winit-support = { version = "0.10.0", path = "../imgui-winit-support" }
imgui-winit-support = { version = "0.11.0", path = "../imgui-winit-support" }
image = "0.23"
[features]

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-sdl2-support"
version = "0.10.0"
version = "0.11.0"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "sdl2 support code for the imgui crate"
@ -11,10 +11,10 @@ license = "MIT/Apache-2.0"
categories = ["gui"]
[dependencies]
imgui = { version = "0.10.0", path = "../imgui" }
imgui = { version = "0.11.0", path = "../imgui" }
sdl2 = "0.34.5"
[dev-dependencies]
glow = "0.12.0"
imgui-glow-renderer = { version = "0.10.0", path = "../imgui-glow-renderer" }
imgui-glow-renderer = { version = "0.11.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.10.0"
version = "0.11.0"
edition = "2018"
description = "Raw FFI bindings to dear imgui"
homepage = "https://github.com/imgui-rs/imgui-rs"

View File

@ -1,12 +1,12 @@
[package]
name = "imgui-winit-glow-renderer-viewports"
version = "0.1.0"
version = "0.11.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
imgui = { version="0.10.0", path="../imgui", features=["docking"] }
imgui = { version = "0.11.0", path="../imgui", features=["docking"] }
glow = "0.12.0"
glutin = "0.30.3"

View File

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

View File

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