Skip to content

Commit

Permalink
ready for 0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sanbox-irl committed Dec 26, 2021
1 parent 0fac2f8 commit 55a7637
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.markdown
@@ -1,5 +1,11 @@
# Change Log

## [0.8.2] - 2021-12-26

Merry uh Boxing Day, here's another `imgui-rs` patch.

- FIXES: We incorrectly listed `docking` as a feature in `imgui-rs`'s features list to `doc.rs`. This prevented our docs from building.

## [0.8.1] - 2021-12-24

Merry Christmas Eve, here's an `imgui-rs` patch.
Expand Down
4 changes: 2 additions & 2 deletions imgui-gfx-renderer/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "imgui-gfx-renderer"
version = "0.8.1"
version = "0.8.2"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "gfx renderer for the imgui crate"
Expand All @@ -19,7 +19,7 @@ maintenance = { status = "deprecated" }

[dependencies]
gfx = "0.18"
imgui = { version = "0.8.0", path = "../imgui" }
imgui = { version = "0.8.2", path = "../imgui" }

[target.'cfg(windows)'.build-dependencies]
winapi = { version = "0.3", features = ["d3dcompiler"] }
4 changes: 2 additions & 2 deletions imgui-glium-renderer/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "imgui-glium-renderer"
version = "0.8.1"
version = "0.8.2"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "Glium renderer for the imgui crate"
Expand All @@ -11,4 +11,4 @@ categories = ["gui", "rendering"]

[dependencies]
glium = { version = ">=0.28, < 0.31", default-features = false }
imgui = { version = "0.8.0", path = "../imgui" }
imgui = { version = "0.8.2", path = "../imgui" }
2 changes: 1 addition & 1 deletion imgui-glow-renderer/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "imgui-glow-renderer"
version = "0.8.1"
version = "0.8.2"
edition = "2018"
authors = ["jmaargh and the imgui-rs Developers"]
description = "glow renderer for the imgui crate"
Expand Down
2 changes: 1 addition & 1 deletion imgui-sys/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "imgui-sys"
version = "0.8.1"
version = "0.8.2"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "Raw FFI bindings to dear imgui"
Expand Down
4 changes: 2 additions & 2 deletions imgui-winit-support/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "imgui-winit-support"
version = "0.8.1"
version = "0.8.2"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "winit support code for the imgui crate"
Expand All @@ -10,7 +10,7 @@ license = "MIT/Apache-2.0"
categories = ["gui"]

[dependencies]
imgui = { version = "0.8.0", path = "../imgui" }
imgui = { version = "0.8.2", path = "../imgui" }
winit-19 = { version = ">= 0.16, < 0.20", package = "winit", optional = true }
winit-20 = { version = ">= 0.20, < 0.22", package = "winit", optional = true }
winit-22 = { version = "0.22", package = "winit", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions imgui/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "imgui"
version = "0.8.1"
version = "0.8.2"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "High-level Rust bindings to dear imgui"
Expand All @@ -17,7 +17,7 @@ features = ["freetype", "tables-api"]

[dependencies]
bitflags = "1"
imgui-sys = { version = "0.8.0", path = "../imgui-sys" }
imgui-sys = { version = "0.8.2", path = "../imgui-sys" }
parking_lot = "0.11"

[features]
Expand Down

0 comments on commit 55a7637

Please sign in to comment.