Release: 0.2.0

This commit is contained in:
Joonas Javanainen 2019-09-07 21:17:31 +03:00
parent d22f763ff0
commit 1f082d6d9b
No known key found for this signature in database
GPG Key ID: D39CCA5CB19B9179
9 changed files with 36 additions and 36 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "imgui"
version = "0.2.0-pre"
version = "0.2.0"
edition = "2018"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "High-level Rust bindings to dear imgui"
@ -17,7 +17,7 @@ travis-ci = { repository = "Gekkio/imgui-rs" }
bitflags = "1.0"
glium = { version = "0.25", default-features = false, optional = true }
gfx = { version = "0.18", optional = true }
imgui-sys = { version = "0.2.0-pre", path = "imgui-sys" }
imgui-sys = { version = "0.2.0", path = "imgui-sys" }
lazy_static = "1.1"
parking_lot = "0.9"

View File

@ -408,11 +408,11 @@ dependencies = [
[[package]]
name = "imgui"
version = "0.2.0-pre"
version = "0.2.0"
dependencies = [
"bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"glium 0.25.1 (registry+https://github.com/rust-lang/crates.io-index)",
"imgui-sys 0.2.0-pre",
"imgui-sys 0.2.0",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -424,31 +424,31 @@ dependencies = [
"clipboard 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
"glium 0.25.1 (registry+https://github.com/rust-lang/crates.io-index)",
"image 0.22.1 (registry+https://github.com/rust-lang/crates.io-index)",
"imgui 0.2.0-pre",
"imgui-glium-renderer 0.2.0-pre",
"imgui-winit-support 0.2.0-pre",
"imgui 0.2.0",
"imgui-glium-renderer 0.2.0",
"imgui-winit-support 0.2.0",
]
[[package]]
name = "imgui-glium-renderer"
version = "0.2.0-pre"
version = "0.2.0"
dependencies = [
"glium 0.25.1 (registry+https://github.com/rust-lang/crates.io-index)",
"imgui 0.2.0-pre",
"imgui 0.2.0",
]
[[package]]
name = "imgui-sys"
version = "0.2.0-pre"
version = "0.2.0"
dependencies = [
"cc 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "imgui-winit-support"
version = "0.2.0-pre"
version = "0.2.0"
dependencies = [
"imgui 0.2.0-pre",
"imgui 0.2.0",
"winit 0.19.3 (registry+https://github.com/rust-lang/crates.io-index)",
]

View File

@ -13,6 +13,6 @@ publish = false
clipboard = "0.5"
glium = { version = "0.25", default-features = true }
image = "0.22"
imgui = { version = "0.2.0-pre", path = "../" }
imgui-glium-renderer = { version = "0.2.0-pre", path = "../imgui-glium-renderer" }
imgui-winit-support = { version = "0.2.0-pre", path = "../imgui-winit-support" }
imgui = { version = "0.2.0", path = "../" }
imgui-glium-renderer = { version = "0.2.0", path = "../imgui-glium-renderer" }
imgui-winit-support = { version = "0.2.0", path = "../imgui-winit-support" }

View File

@ -449,11 +449,11 @@ dependencies = [
[[package]]
name = "imgui"
version = "0.2.0-pre"
version = "0.2.0"
dependencies = [
"bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"gfx 0.18.1 (registry+https://github.com/rust-lang/crates.io-index)",
"imgui-sys 0.2.0-pre",
"imgui-sys 0.2.0",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -469,32 +469,32 @@ dependencies = [
"gfx_window_glutin 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
"glutin 0.21.1 (registry+https://github.com/rust-lang/crates.io-index)",
"image 0.22.1 (registry+https://github.com/rust-lang/crates.io-index)",
"imgui 0.2.0-pre",
"imgui-gfx-renderer 0.2.0-pre",
"imgui-winit-support 0.2.0-pre",
"imgui 0.2.0",
"imgui-gfx-renderer 0.2.0",
"imgui-winit-support 0.2.0",
]
[[package]]
name = "imgui-gfx-renderer"
version = "0.2.0-pre"
version = "0.2.0"
dependencies = [
"gfx 0.18.1 (registry+https://github.com/rust-lang/crates.io-index)",
"imgui 0.2.0-pre",
"imgui 0.2.0",
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "imgui-sys"
version = "0.2.0-pre"
version = "0.2.0"
dependencies = [
"cc 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "imgui-winit-support"
version = "0.2.0-pre"
version = "0.2.0"
dependencies = [
"imgui 0.2.0-pre",
"imgui 0.2.0",
"winit 0.19.3 (registry+https://github.com/rust-lang/crates.io-index)",
]

View File

@ -20,9 +20,9 @@ gfx_device_gl = "0.16"
gfx_window_glutin = "0.31"
glutin = "0.21"
image = "0.22"
imgui = { version = "0.2.0-pre", path = "../" }
imgui-gfx-renderer = { version = "0.2.0-pre", path = "../imgui-gfx-renderer" }
imgui-winit-support = { version = "0.2.0-pre", path = "../imgui-winit-support" }
imgui = { version = "0.2.0", path = "../" }
imgui-gfx-renderer = { version = "0.2.0", path = "../imgui-gfx-renderer" }
imgui-winit-support = { version = "0.2.0", path = "../imgui-winit-support" }
[target.'cfg(windows)'.dev-dependencies]
gfx_device_dx11 = "0.8"

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-gfx-renderer"
version = "0.2.0-pre"
version = "0.2.0"
edition = "2018"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "gfx renderer for the imgui crate"
@ -19,7 +19,7 @@ travis-ci = { repository = "Gekkio/imgui-rs" }
[dependencies]
gfx = "0.18"
imgui = { version = "0.2.0-pre", path = "../", features = ["gfx"] }
imgui = { version = "0.2.0", path = "../", features = ["gfx"] }
[target.'cfg(windows)'.build-dependencies]
winapi = { version = "0.3", features = ["d3dcompiler"] }

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-glium-renderer"
version = "0.2.0-pre"
version = "0.2.0"
edition = "2018"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "Glium renderer for the imgui crate"
@ -14,4 +14,4 @@ travis-ci = { repository = "Gekkio/imgui-rs" }
[dependencies]
glium = { version = "0.25", default-features = false }
imgui = { version = "0.2.0-pre", path = "../", features = ["glium"] }
imgui = { version = "0.2.0", path = "../", features = ["glium"] }

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-sys"
version = "0.2.0-pre"
version = "0.2.0"
edition = "2018"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "Raw FFI bindings to dear imgui"

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-winit-support"
version = "0.2.0-pre"
version = "0.2.0"
edition = "2018"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "winit support code for the imgui crate"
@ -13,9 +13,9 @@ categories = ["gui"]
travis-ci = { repository = "Gekkio/imgui-rs" }
[dependencies]
imgui = { version = "0.2.0-pre", path = "../" }
imgui = { version = "0.2.0", path = "../" }
winit-19 = { version = ">= 0.16, <= 0.19", package = "winit", optional = true }
winit-20 = { version = "0.20.0-alpha3", package = "winit", optional = true }
[features]
default = ["winit-19"]
default = ["winit-19"]