diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index 00b3409..7565b36 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 0810c48..98f25d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imgui" -version = "0.0.13-pre" +version = "0.0.13" authors = ["Joonas Javanainen "] 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"] diff --git a/imgui-glium-renderer/Cargo.toml b/imgui-glium-renderer/Cargo.toml index 6cdaa54..5138d05 100644 --- a/imgui-glium-renderer/Cargo.toml +++ b/imgui-glium-renderer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imgui-glium-renderer" -version = "0.0.13-pre" +version = "0.0.13" authors = ["Joonas Javanainen "] 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 } diff --git a/imgui-sys/Cargo.toml b/imgui-sys/Cargo.toml index 335dd34..a5c2874 100644 --- a/imgui-sys/Cargo.toml +++ b/imgui-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imgui-sys" -version = "0.0.13-pre" +version = "0.0.13" authors = ["Joonas Javanainen "] description = "Raw ocornut/imgui bindings for Rust" homepage = "https://github.com/gekkio/imgui-rs"