Skip to content

Commit

Permalink
Release: 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gekkio committed May 27, 2020
1 parent d72134e commit bcf7669
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 31 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.4.0] - 2020-05-27

### Added

- WebAssembly FFI shells
Expand Down Expand Up @@ -554,7 +556,8 @@ by setting the environment variable `WINIT_HIDPI_FACTOR=1` if you use X11.

- Initial release with cimgui/imgui 1.44, glium 0.9

[Unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/Gekkio/imgui-rs/compare/v0.3.0...v0.4.0
[0.3.1]: https://github.com/Gekkio/imgui-rs/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/Gekkio/imgui-rs/compare/v0.2.0...v0.3.0
[0.2.1]: https://github.com/Gekkio/imgui-rs/compare/v0.2.0...v0.2.1
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.4.0-pre"
version = "0.4.0"
edition = "2018"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "High-level Rust bindings to dear imgui"
Expand All @@ -18,7 +18,7 @@ exclude = [
bitflags = "1.0"
glium = { version = "0.27", default-features = false, optional = true }
gfx = { version = "0.18", optional = true }
imgui-sys = { version = "0.4.0-pre", path = "imgui-sys" }
imgui-sys = { version = "0.4.0", path = "imgui-sys" }
lazy_static = "1.1"
parking_lot = "0.10"

Expand Down
20 changes: 10 additions & 10 deletions imgui-examples/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions imgui-gfx-examples/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 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.4.0-pre"
version = "0.4.0"
edition = "2018"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "gfx renderer for the imgui crate"
Expand All @@ -16,7 +16,7 @@ default = ["opengl"]

[dependencies]
gfx = "0.18"
imgui = { version = "0.4.0-pre", path = "../", features = ["gfx"] }
imgui = { version = "0.4.0", path = "../", features = ["gfx"] }

[target.'cfg(windows)'.build-dependencies]
winapi = { version = "0.3", features = ["d3dcompiler"] }
4 changes: 2 additions & 2 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.4.0-pre"
version = "0.4.0"
edition = "2018"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "Glium renderer for the imgui crate"
Expand All @@ -11,4 +11,4 @@ categories = ["gui", "rendering"]

[dependencies]
glium = { version = "0.27", default-features = false }
imgui = { version = "0.4.0-pre", path = "../", features = ["glium"] }
imgui = { version = "0.4.0", path = "../", features = ["glium"] }
4 changes: 2 additions & 2 deletions imgui-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "imgui-sys"
version = "0.4.0-pre"
version = "0.4.0"
edition = "2018"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "Raw FFI bindings to dear imgui"
Expand All @@ -15,4 +15,4 @@ cc = "1.0"

[features]
default = []
wasm = []
wasm = []
4 changes: 2 additions & 2 deletions imgui-winit-support/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "imgui-winit-support"
version = "0.4.0-pre"
version = "0.4.0"
edition = "2018"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "winit support code for the imgui crate"
Expand All @@ -10,7 +10,7 @@ license = "MIT/Apache-2.0"
categories = ["gui"]

[dependencies]
imgui = { version = "0.4.0-pre", path = "../" }
imgui = { version = "0.4.0", path = "../" }
winit-19 = { version = ">= 0.16, <= 0.19", package = "winit", optional = true }
winit-20 = { version = ">= 0.20, <= 0.21", package = "winit", optional = true }
winit-22 = { version = "0.22", package = "winit", optional = true }
Expand Down

0 comments on commit bcf7669

Please sign in to comment.