Skip to content

Commit

Permalink
Release: 0.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Gekkio committed Apr 25, 2017
1 parent accbe61 commit f97ebc8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 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.12] - 2017-04-25

### Added

- Support for progress bar
Expand Down Expand Up @@ -140,7 +142,8 @@

- Initial release with cimgui/imgui 1.44, glium 0.9

[Unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.0.11...HEAD
[Unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.0.12...HEAD
[0.0.12]: https://github.com/Gekkio/imgui-rs/compare/v0.0.11...v0.0.12
[0.0.11]: https://github.com/Gekkio/imgui-rs/compare/v0.0.10...v0.0.11
[0.0.10]: https://github.com/Gekkio/imgui-rs/compare/v0.0.9...v0.0.10
[0.0.9]: https://github.com/Gekkio/imgui-rs/compare/v0.0.8...v0.0.9
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "imgui"
version = "0.0.12-pre"
version = "0.0.12"
authors = ["Joonas Javanainen <[email protected]>"]
description = "Experimental bindings to ocornut/imgui"
readme = "README.markdown"
Expand All @@ -10,8 +10,8 @@ license = "MIT OR Apache-2.0"
categories = ["gui", "api-bindings"]

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

[dev-dependencies]
glium = "0.16"
imgui-glium-renderer = { path = "imgui-glium-renderer" }
imgui-glium-renderer = { version = "0.0.12", path = "imgui-glium-renderer" }
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.12-pre"
version = "0.0.12"
authors = ["Joonas Javanainen <[email protected]>"]
description = "Glium renderer for imgui-rs"
homepage = "https://github.com/gekkio/imgui-rs"
Expand All @@ -10,5 +10,5 @@ categories = ["gui", "rendering"]

[dependencies]
glium = { version = "0.16", default-features = false }
imgui = { path = "../" }
imgui-sys = { path = "../imgui-sys", features = ["glium"] }
imgui = { version = "0.0.12", path = "../" }
imgui-sys = { version = "0.0.12", 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.12-pre"
version = "0.0.12"
authors = ["Joonas Javanainen <[email protected]>"]
description = "Raw ocornut/imgui bindings for Rust"
homepage = "https://github.com/gekkio/imgui-rs"
Expand Down

0 comments on commit f97ebc8

Please sign in to comment.