Skip to content

Commit

Permalink
Use open-ended version of imgui in the imgui plugin and upate the dem…
Browse files Browse the repository at this point in the history
…o to use imgui 0.5
  • Loading branch information
aclysma committed Sep 27, 2020
1 parent fd47624 commit 7330379
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog

## 0.10.0 (Unreleased)
## Unreleased

* The imgui plugin has been updated to use open-ended versioning. This is published as skulpin-plugin-imgui 0.6.0 but
does not affect the skulpin release itself as this is a dev-dependency.

## 0.10.0

* Improvements to validation layer handling
* Search for VK_LAYER_KHRONOS_validation but fall back to VK_LAYER_LUNARG_standard_validation if it's not present
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,6 @@ nphysics2d = "0.12"
sdl2 = { version = ">=0.33", features = ["bundled", "static-link"] }

# Used for the imgui example only
imgui = "0.4"
imgui-winit-support = "0.4"
imgui = "0.5"
imgui-winit-support = "0.5"
skulpin-plugin-imgui = { path = "skulpin-plugin-imgui"}
4 changes: 2 additions & 2 deletions skulpin-plugin-imgui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "skulpin-plugin-imgui"
version = "0.5.0"
version = "0.6.0"
authors = ["Philip Degarmo <aclysma@gmail.com>"]
edition = "2018"
description = "A plugin for skulpin that implements imgui rendering"
Expand All @@ -14,5 +14,5 @@ categories = ["graphics", "gui", "multimedia", "rendering", "visualization"]

[dependencies]
skulpin-renderer = { version = "0.4", path = "../skulpin-renderer" }
imgui = "0.4"
imgui = ">=0.4"
log = "0.4"

0 comments on commit 7330379

Please sign in to comment.