Skip to content

Commit

Permalink
Release: 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gekkio committed Jul 12, 2019
1 parent d5d0ff7 commit f476c3d
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 35 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.1.0] - 2019-07-12

### Added

- Support for font atlas sharing
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.1.0-pre"
version = "0.1.0"
edition = "2018"
authors = ["Joonas Javanainen <[email protected]>", "imgui-rs contributors"]
description = "High-level Rust bindings to dear imgui"
Expand All @@ -17,7 +17,7 @@ travis-ci = { repository = "Gekkio/imgui-rs" }
bitflags = "1.0"
glium = { version = "0.25", default-features = false, optional = true }
gfx = { version = "0.18", optional = true }
imgui-sys = { version = "0.1.0-pre", path = "imgui-sys" }
imgui-sys = { version = "0.1.0", path = "imgui-sys" }
lazy_static = "1.1"
parking_lot = "0.8"

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.

6 changes: 3 additions & 3 deletions imgui-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ publish = false
clipboard = "0.5"
glium = { version = "0.25", default-features = true }
image = "0.21"
imgui = { version = "0.1.0-pre", path = "../" }
imgui-glium-renderer = { version = "0.1.0-pre", path = "../imgui-glium-renderer" }
imgui-winit-support = { version = "0.1.0-pre", path = "../imgui-winit-support" }
imgui = { version = "0.1.0", path = "../" }
imgui-glium-renderer = { version = "0.1.0", path = "../imgui-glium-renderer" }
imgui-winit-support = { version = "0.1.0", path = "../imgui-winit-support" }
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.

6 changes: 3 additions & 3 deletions imgui-gfx-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ gfx_device_gl = "0.16"
gfx_window_glutin = "0.31"
glutin = "0.21"
image = "0.21"
imgui = { version = "0.1.0-pre", path = "../" }
imgui-gfx-renderer = { version = "0.1.0-pre", path = "../imgui-gfx-renderer" }
imgui-winit-support = { version = "0.1.0-pre", path = "../imgui-winit-support" }
imgui = { version = "0.1.0", path = "../" }
imgui-gfx-renderer = { version = "0.1.0", path = "../imgui-gfx-renderer" }
imgui-winit-support = { version = "0.1.0", path = "../imgui-winit-support" }

[target.'cfg(windows)'.dev-dependencies]
gfx_device_dx11 = "0.8"
Expand Down
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.1.0-pre"
version = "0.1.0"
edition = "2018"
authors = ["Joonas Javanainen <[email protected]>", "imgui-rs contributors"]
description = "gfx renderer for the imgui crate"
Expand All @@ -19,7 +19,7 @@ travis-ci = { repository = "Gekkio/imgui-rs" }

[dependencies]
gfx = "0.18"
imgui = { version = "0.1.0-pre", path = "../", features = ["gfx"] }
imgui = { version = "0.1.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.1.0-pre"
version = "0.1.0"
edition = "2018"
authors = ["Joonas Javanainen <[email protected]>", "imgui-rs contributors"]
description = "Glium renderer for the imgui crate"
Expand All @@ -14,4 +14,4 @@ travis-ci = { repository = "Gekkio/imgui-rs" }

[dependencies]
glium = { version = "0.25", default-features = false }
imgui = { version = "0.1.0-pre", path = "../", features = ["glium"] }
imgui = { version = "0.1.0", path = "../", 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.1.0-pre"
version = "0.1.0"
edition = "2018"
authors = ["Joonas Javanainen <[email protected]>", "imgui-rs contributors"]
description = "Raw FFI bindings to dear imgui"
Expand Down
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.1.0-pre"
version = "0.1.0"
edition = "2018"
authors = ["Joonas Javanainen <[email protected]>", "imgui-rs contributors"]
description = "winit support code for the imgui crate"
Expand All @@ -13,5 +13,5 @@ categories = ["gui"]
travis-ci = { repository = "Gekkio/imgui-rs" }

[dependencies]
imgui = { version = "0.1.0-pre", path = "../" }
imgui = { version = "0.1.0", path = "../" }
winit = ">= 0.16, <= 0.19"

0 comments on commit f476c3d

Please sign in to comment.