Skip to content

Commit

Permalink
Release: 0.0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
Gekkio committed Dec 23, 2017
1 parent b4ff841 commit 1fc53db
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 14 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.0.18] - 2017-12-23

### Added

- `is_item_hovered`
Expand All @@ -11,6 +13,7 @@
### Changed

- Upgrade to imgui/cimgui 1.52
- Upgrade to glium 0.19

### Deprecated

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.18-pre"
version = "0.0.18"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "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.18-pre", path = "imgui-sys" }
imgui-sys = { version = "0.0.18", path = "imgui-sys" }

[workspace]
members = ["imgui-examples", "imgui-sys", "imgui-gfx-renderer", "imgui-glium-renderer"]
10 changes: 5 additions & 5 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.18-pre"
version = "0.0.18"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "imgui crate examples"
homepage = "https://github.com/Gekkio/imgui-rs"
Expand All @@ -13,7 +13,7 @@ gfx = "0.16"
gfx_window_glutin = "0.19"
glium = { version = "0.19", default-features = true }
glutin = "0.11"
imgui = { version = "0.0.18-pre", path = "../" }
imgui-gfx-renderer = { version = "0.0.18-pre", path = "../imgui-gfx-renderer" }
imgui-glium-renderer = { version = "0.0.18-pre", path = "../imgui-glium-renderer" }
imgui-sys = { version = "0.0.18-pre", path = "../imgui-sys", features = ["gfx", "glium"] }
imgui = { version = "0.0.18", path = "../" }
imgui-gfx-renderer = { version = "0.0.18", path = "../imgui-gfx-renderer" }
imgui-glium-renderer = { version = "0.0.18", path = "../imgui-glium-renderer" }
imgui-sys = { version = "0.0.18", path = "../imgui-sys", features = ["gfx", "glium"] }
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.18-pre"
version = "0.0.18"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "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.16"
imgui = { version = "0.0.18-pre", path = "../" }
imgui-sys = { version = "0.0.18-pre", path = "../imgui-sys", features = ["gfx"] }
imgui = { version = "0.0.18", path = "../" }
imgui-sys = { version = "0.0.18", 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.18-pre"
version = "0.0.18"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "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.19", default-features = false }
imgui = { version = "0.0.18-pre", path = "../" }
imgui-sys = { version = "0.0.18-pre", path = "../imgui-sys", features = ["glium"] }
imgui = { version = "0.0.18", path = "../" }
imgui-sys = { version = "0.0.18", path = "../imgui-sys", features = ["glium"] }
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.18-pre"
version = "0.0.18"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "Raw FFI bindings to dear imgui"
homepage = "https://github.com/Gekkio/imgui-rs"
Expand Down

0 comments on commit 1fc53db

Please sign in to comment.