Skip to content

Commit

Permalink
Release: 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gekkio committed Nov 15, 2020
1 parent c6716d6 commit 0d57f87
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 13 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.markdown
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.6.0] - 2020-11-15

### Added

- `Io::peek_input_characters`
Expand Down Expand Up @@ -596,7 +598,8 @@ by setting the environment variable `WINIT_HIDPI_FACTOR=1` if you use X11.

- Initial release with cimgui/imgui 1.44, glium 0.9

[Unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.5.0...HEAD
[Unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.6.0...HEAD
[0.6.0]: https://github.com/Gekkio/imgui-rs/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/Gekkio/imgui-rs/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/Gekkio/imgui-rs/compare/v0.3.0...v0.4.0
[0.3.1]: https://github.com/Gekkio/imgui-rs/compare/v0.3.0...v0.3.1
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "imgui"
version = "0.5.0"
version = "0.6.0"
edition = "2018"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "High-level Rust bindings to dear imgui"
Expand All @@ -18,7 +18,7 @@ exclude = [
bitflags = "1.0"
glium = { version = "0.28", default-features = false, optional = true }
gfx = { version = "0.18", optional = true }
imgui-sys = { version = "0.5.0", path = "imgui-sys" }
imgui-sys = { version = "0.6.0", path = "imgui-sys" }
lazy_static = "1.1"
parking_lot = "0.11"

Expand Down
4 changes: 2 additions & 2 deletions imgui-examples/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions imgui-gfx-examples/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions imgui-gfx-renderer/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "imgui-gfx-renderer"
version = "0.5.0"
version = "0.6.0"
edition = "2018"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "gfx renderer for the imgui crate"
Expand All @@ -16,7 +16,7 @@ default = ["opengl"]

[dependencies]
gfx = "0.18"
imgui = { version = "0.5.0", path = "../", features = ["gfx"] }
imgui = { version = "0.6.0", path = "../", features = ["gfx"] }

[target.'cfg(windows)'.build-dependencies]
winapi = { version = "0.3", features = ["d3dcompiler"] }
2 changes: 1 addition & 1 deletion imgui-glium-renderer/Cargo.toml
Expand Up @@ -11,4 +11,4 @@ categories = ["gui", "rendering"]

[dependencies]
glium = { version = "0.28", default-features = false }
imgui = { version = "0.5.0", path = "../", features = ["glium"] }
imgui = { version = "0.6.0", path = "../", features = ["glium"] }
2 changes: 1 addition & 1 deletion imgui-sys/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "imgui-sys"
version = "0.5.0"
version = "0.6.0"
edition = "2018"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "Raw FFI bindings to dear imgui"
Expand Down
2 changes: 1 addition & 1 deletion imgui-winit-support/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ license = "MIT/Apache-2.0"
categories = ["gui"]

[dependencies]
imgui = { version = "0.5.0", path = "../" }
imgui = { version = "0.6.0", path = "../" }
winit-19 = { version = ">= 0.16, <= 0.19", package = "winit", optional = true }
winit-20 = { version = ">= 0.20, <= 0.21", package = "winit", optional = true }
winit-22 = { version = "0.22", package = "winit", optional = true }
Expand Down

0 comments on commit 0d57f87

Please sign in to comment.