Skip to content

Commit

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

## [Unreleased]

## [0.0.17] - 2017-11-07

### Added

- Namespaced flags (e.g. `ImGuiWindowFlags`)
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.17-pre"
version = "0.0.17"
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.17-pre", path = "imgui-sys" }
imgui-sys = { version = "0.0.17", 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.17-pre"
version = "0.0.17"
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.18"
glium = { version = "0.18", default-features = true }
glutin = "0.10"
imgui = { version = "0.0.17-pre", path = "../" }
imgui-gfx-renderer = { version = "0.0.17-pre", path = "../imgui-gfx-renderer" }
imgui-glium-renderer = { version = "0.0.17-pre", path = "../imgui-glium-renderer" }
imgui-sys = { version = "0.0.17-pre", path = "../imgui-sys", features = ["gfx", "glium"] }
imgui = { version = "0.0.17", path = "../" }
imgui-gfx-renderer = { version = "0.0.17", path = "../imgui-gfx-renderer" }
imgui-glium-renderer = { version = "0.0.17", path = "../imgui-glium-renderer" }
imgui-sys = { version = "0.0.17", 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.17-pre"
version = "0.0.17"
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.17-pre", path = "../" }
imgui-sys = { version = "0.0.17-pre", path = "../imgui-sys", features = ["gfx"] }
imgui = { version = "0.0.17", path = "../" }
imgui-sys = { version = "0.0.17", 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.17-pre"
version = "0.0.17"
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.18", default-features = false }
imgui = { version = "0.0.17-pre", path = "../" }
imgui-sys = { version = "0.0.17-pre", path = "../imgui-sys", features = ["glium"] }
imgui = { version = "0.0.17", path = "../" }
imgui-sys = { version = "0.0.17", 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.17-pre"
version = "0.0.17"
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 f6fa2e0

Please sign in to comment.