From 8e13403523445f33543ce4d3b790ef542507fad9 Mon Sep 17 00:00:00 2001 From: Joonas Javanainen Date: Tue, 25 Apr 2017 23:24:40 +0300 Subject: [PATCH] Bump version to 0.0.14-pre --- Cargo.toml | 4 ++-- imgui-glium-renderer/Cargo.toml | 6 +++--- imgui-sys/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 98f25d4..072161f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imgui" -version = "0.0.13" +version = "0.0.14-pre" 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", path = "imgui-sys" } +imgui-sys = { version = "0.0.14-pre", 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 5138d05..6dd07b4 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" +version = "0.0.14-pre" 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", path = "../" } -imgui-sys = { version = "0.0.13", path = "../imgui-sys", features = ["glium"] } +imgui = { version = "0.0.14-pre", path = "../" } +imgui-sys = { version = "0.0.14-pre", 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 a5c2874..acf0ee4 100644 --- a/imgui-sys/Cargo.toml +++ b/imgui-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imgui-sys" -version = "0.0.13" +version = "0.0.14-pre" authors = ["Joonas Javanainen "] description = "Raw ocornut/imgui bindings for Rust" homepage = "https://github.com/gekkio/imgui-rs"