Skip to content

Commit

Permalink
Release: 0.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
Gekkio committed Jul 23, 2017
1 parent feb8a7a commit c55bc7e
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 15 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.15] - 2017-07-23

### Added

- Support for new_line function
Expand Down Expand Up @@ -201,7 +203,8 @@

- Initial release with cimgui/imgui 1.44, glium 0.9

[Unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.0.14...HEAD
[Unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.0.15...HEAD
[0.0.15]: https://github.com/Gekkio/imgui-rs/compare/v0.0.14...v0.0.15
[0.0.14]: https://github.com/Gekkio/imgui-rs/compare/v0.0.13...v0.0.14
[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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "imgui"
version = "0.0.15-pre"
version = "0.0.15"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "High-level Rust bindings to dear imgui"
homepage = "https://github.com/Gekkio/imgui-rs"
Expand All @@ -13,7 +13,7 @@ readme = "README.markdown"
travis-ci = { repository = "Gekkio/imgui-rs" }

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

[workspace]
members = ["imgui-examples", "imgui-sys", "imgui-gfx-renderer", "imgui-glium-renderer"]
10 changes: 5 additions & 5 deletions imgui-examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "imgui-examples"
version = "0.0.15-pre"
version = "0.0.15"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "imgui crate examples"
homepage = "https://github.com/Gekkio/imgui-rs"
Expand All @@ -13,7 +13,7 @@ gfx = "0.16"
gfx_window_glutin = "0.17"
glium = { version = "0.17", default-features = true }
glutin = "0.9"
imgui = { version = "0.0.15-pre", path = "../" }
imgui-gfx-renderer = { version = "0.0.15-pre", path = "../imgui-gfx-renderer" }
imgui-glium-renderer = { version = "0.0.15-pre", path = "../imgui-glium-renderer" }
imgui-sys = { version = "0.0.15-pre", path = "../imgui-sys", features = ["gfx", "glium"] }
imgui = { version = "0.0.15", path = "../" }
imgui-gfx-renderer = { version = "0.0.15", path = "../imgui-gfx-renderer" }
imgui-glium-renderer = { version = "0.0.15", path = "../imgui-glium-renderer" }
imgui-sys = { version = "0.0.15", path = "../imgui-sys", features = ["gfx", "glium"] }
6 changes: 3 additions & 3 deletions imgui-gfx-renderer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "imgui-gfx-renderer"
version = "0.0.15-pre"
version = "0.0.15"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "gfx renderer for the imgui crate"
homepage = "https://github.com/Gekkio/imgui-rs"
Expand All @@ -10,5 +10,5 @@ categories = ["gui", "rendering"]

[dependencies]
gfx = "0.16"
imgui = { version = "0.0.15-pre", path = "../" }
imgui-sys = { version = "0.0.15-pre", path = "../imgui-sys", features = ["gfx"] }
imgui = { version = "0.0.15", path = "../" }
imgui-sys = { version = "0.0.15", path = "../imgui-sys", features = ["gfx"] }
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.15-pre"
version = "0.0.15"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "Glium renderer for the imgui crate"
homepage = "https://github.com/Gekkio/imgui-rs"
Expand All @@ -10,5 +10,5 @@ categories = ["gui", "rendering"]

[dependencies]
glium = { version = "0.17", default-features = false }
imgui = { version = "0.0.15-pre", path = "../" }
imgui-sys = { version = "0.0.15-pre", path = "../imgui-sys", features = ["glium"] }
imgui = { version = "0.0.15", path = "../" }
imgui-sys = { version = "0.0.15", 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.15-pre"
version = "0.0.15"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "Raw FFI bindings to dear imgui"
homepage = "https://github.com/Gekkio/imgui-rs"
Expand Down

0 comments on commit c55bc7e

Please sign in to comment.