Release: 0.0.13

This commit is contained in:
Joonas Javanainen 2017-04-25 23:22:34 +03:00
parent 7351038ff8
commit f086d3cdde
No known key found for this signature in database
GPG Key ID: D39CCA5CB19B9179
4 changed files with 14 additions and 7 deletions

View File

@ -2,6 +2,12 @@
## [Unreleased]
## [0.0.13] - 2017-04-25
### Changed
- Make the crates publishable again after the Glium renderer separation
## [0.0.12] - 2017-04-25 [YANKED]
### Added
@ -142,7 +148,8 @@
- Initial release with cimgui/imgui 1.44, glium 0.9
[Unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.0.12...HEAD
[Unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.0.13...HEAD
[0.0.13]: https://github.com/Gekkio/imgui-rs/compare/v0.0.12...v0.0.13
[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

View File

@ -1,6 +1,6 @@
[package]
name = "imgui"
version = "0.0.13-pre"
version = "0.0.13"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>"]
description = "Experimental bindings to ocornut/imgui"
readme = "README.markdown"
@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
categories = ["gui", "api-bindings"]
[dependencies]
imgui-sys = { version = "0.0.13-pre", path = "imgui-sys" }
imgui-sys = { version = "0.0.13", path = "imgui-sys" }
[workspace]
members = ["imgui-sys", "imgui-glium-renderer"]

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-glium-renderer"
version = "0.0.13-pre"
version = "0.0.13"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>"]
description = "Glium renderer for imgui-rs"
homepage = "https://github.com/gekkio/imgui-rs"
@ -10,8 +10,8 @@ categories = ["gui", "rendering"]
[dependencies]
glium = { version = "0.16", default-features = false }
imgui = { version = "0.0.13-pre", path = "../" }
imgui-sys = { version = "0.0.13-pre", path = "../imgui-sys", features = ["glium"] }
imgui = { version = "0.0.13", path = "../" }
imgui-sys = { version = "0.0.13", path = "../imgui-sys", features = ["glium"] }
[dev-dependencies]
glium = { version = "0.16", default-features = true }

View File

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