Skip to content

Commit

Permalink
Release: 0.0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
Gekkio committed Oct 11, 2018
1 parent 3a4f6b2 commit c85e73e
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 16 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 2,8 @@

## [Unreleased]

## [0.0.21] - 2018-10-11

### Added

- `ImGui::mouse_down`
Expand Down Expand Up @@ -393,7 395,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.0.20...HEAD
[Unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.0.21...HEAD
[0.0.21]: https://github.com/Gekkio/imgui-rs/compare/v0.0.20...v0.0.21
[0.0.20]: https://github.com/Gekkio/imgui-rs/compare/v0.0.19...v0.0.20
[0.0.19]: https://github.com/Gekkio/imgui-rs/compare/v0.0.18...v0.0.19
[0.0.18]: https://github.com/Gekkio/imgui-rs/compare/v0.0.17...v0.0.18
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
[package]
name = "imgui"
version = "0.0.21-pre"
version = "0.0.21"
authors = ["Joonas Javanainen <[email protected]>", "imgui-rs contributors"]
description = "High-level Rust bindings to dear imgui"
homepage = "https://github.com/Gekkio/imgui-rs"
Expand All @@ -13,7 13,7 @@ readme = "README.markdown"
travis-ci = { repository = "Gekkio/imgui-rs" }

[dependencies]
imgui-sys = { version = "0.0.21-pre", path = "imgui-sys" }
imgui-sys = { version = "0.0.21", path = "imgui-sys" }

[workspace]
members = ["imgui-examples", "imgui-sys", "imgui-gfx-renderer", "imgui-glium-renderer", "imgui-glutin-support"]
8 changes: 4 additions & 4 deletions imgui-examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
[package]
name = "imgui-examples"
version = "0.0.21-pre"
version = "0.0.21"
authors = ["Joonas Javanainen <[email protected]>", "imgui-rs contributors"]
description = "imgui crate examples"
homepage = "https://github.com/Gekkio/imgui-rs"
Expand All @@ -13,6 13,6 @@ gfx = "0.17"
gfx_window_glutin = "0.26"
glium = { version = "0.22", default-features = true }
glutin = "0.18"
imgui = { version = "0.0.21-pre", path = "../" }
imgui-gfx-renderer = { version = "0.0.21-pre", path = "../imgui-gfx-renderer" }
imgui-glium-renderer = { version = "0.0.21-pre", path = "../imgui-glium-renderer" }
imgui = { version = "0.0.21", path = "../" }
imgui-gfx-renderer = { version = "0.0.21", path = "../imgui-gfx-renderer" }
imgui-glium-renderer = { version = "0.0.21", path = "../imgui-glium-renderer" }
6 changes: 3 additions & 3 deletions imgui-gfx-renderer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
[package]
name = "imgui-gfx-renderer"
version = "0.0.21-pre"
version = "0.0.21"
authors = ["Joonas Javanainen <[email protected]>", "imgui-rs contributors"]
description = "gfx renderer for the imgui crate"
homepage = "https://github.com/Gekkio/imgui-rs"
Expand All @@ -13,5 13,5 @@ travis-ci = { repository = "Gekkio/imgui-rs" }

[dependencies]
gfx = "0.17"
imgui = { version = "0.0.21-pre", path = "../" }
imgui-sys = { version = "0.0.21-pre", path = "../imgui-sys", features = ["gfx"] }
imgui = { version = "0.0.21", path = "../" }
imgui-sys = { version = "0.0.21", path = "../imgui-sys", features = ["gfx"] }
6 changes: 3 additions & 3 deletions imgui-glium-renderer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
[package]
name = "imgui-glium-renderer"
version = "0.0.21-pre"
version = "0.0.21"
authors = ["Joonas Javanainen <[email protected]>", "imgui-rs contributors"]
description = "Glium renderer for the imgui crate"
homepage = "https://github.com/Gekkio/imgui-rs"
Expand All @@ -13,5 13,5 @@ travis-ci = { repository = "Gekkio/imgui-rs" }

[dependencies]
glium = { version = "0.22", default-features = false }
imgui = { version = "0.0.21-pre", path = "../" }
imgui-sys = { version = "0.0.21-pre", path = "../imgui-sys", features = ["glium"] }
imgui = { version = "0.0.21", path = "../" }
imgui-sys = { version = "0.0.21", path = "../imgui-sys", features = ["glium"] }
4 changes: 2 additions & 2 deletions imgui-glutin-support/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
[package]
name = "imgui-glutin-support"
version = "0.0.21-pre"
version = "0.0.21"
authors = ["Joonas Javanainen <[email protected]>", "imgui-rs contributors"]
description = "glutin support code for the imgui crate"
homepage = "https://github.com/Gekkio/imgui-rs"
Expand All @@ -13,4 13,4 @@ travis-ci = { repository = "Gekkio/imgui-rs" }

[dependencies]
glutin = ">= 0.17, <= 0.18"
imgui = { version = "0.0.21-pre", path = "../" }
imgui = { version = "0.0.21", path = "../" }
2 changes: 1 addition & 1 deletion imgui-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
[package]
name = "imgui-sys"
version = "0.0.21-pre"
version = "0.0.21"
authors = ["Joonas Javanainen <[email protected]>", "imgui-rs contributors"]
description = "Raw FFI bindings to dear imgui"
homepage = "https://github.com/Gekkio/imgui-rs"
Expand Down

0 comments on commit c85e73e

Please sign in to comment.