Skip to content

Commit

Permalink
Release: 0.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Gekkio committed Apr 25, 2017
1 parent 7351038 commit f086d3c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
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.13-pre"
version = "0.0.13"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>"]
description = "Experimental bindings to ocornut/imgui"
readme = "README.markdown"
Expand All @@ -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"]
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.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"
Expand All @@ -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 }
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.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"
Expand Down

0 comments on commit f086d3c

Please sign in to comment.