Release: 0.0.12

This commit is contained in:
Joonas Javanainen 2017-04-25 22:43:38 +03:00
parent accbe61cdc
commit f97ebc82fc
No known key found for this signature in database
GPG Key ID: D39CCA5CB19B9179
4 changed files with 11 additions and 8 deletions

View File

@ -2,6 +2,8 @@
## [Unreleased]
## [0.0.12] - 2017-04-25
### Added
- Support for progress bar
@ -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

View File

@ -1,6 +1,6 @@
[package]
name = "imgui"
version = "0.0.12-pre"
version = "0.0.12"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>"]
description = "Experimental bindings to ocornut/imgui"
readme = "README.markdown"
@ -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" }

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-glium-renderer"
version = "0.0.12-pre"
version = "0.0.12"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>"]
description = "Glium renderer for imgui-rs"
homepage = "https://github.com/gekkio/imgui-rs"
@ -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"] }

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-sys"
version = "0.0.12-pre"
version = "0.0.12"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>"]
description = "Raw ocornut/imgui bindings for Rust"
homepage = "https://github.com/gekkio/imgui-rs"