Skip to content

Commit

Permalink
Release 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cwfitzgerald committed May 8, 2021
1 parent 2fd4dd0 commit d04d0e4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The format is loosely based on [Keep a Changelog](https://keepachangelog.com/en/
and this project adheres to cargo's version of [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

- [Unreleased](#unreleased)
- [v0.15.0](#v0150)
- [v0.14.0](#v0140)
- [v0.13.1](#v0131)
- [v0.13.0](#v0130)
Expand All @@ -14,6 +15,13 @@ and this project adheres to cargo's version of [Semantic Versioning](https://sem

## Unreleased

## v0.15.0

Released 2021-05-08

#### Updated
- updated `wgpu` to 0.8

## v0.14.0

Released 2021-02-12
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "imgui-wgpu"
version = "0.14.0"
version = "0.15.0"
authors = ["Noah Hüsser <yatekii@yatekii.ch>", "Connor Fitzgerald <connorwadefitzgerald@gmail.com>", "Steven Wittens <steven@acko.net>"]
edition = "2018"
description = "A wgpu render backend for imgui-rs."
Expand Down Expand Up @@ -29,7 +29,7 @@ bytemuck = "1"
imgui = "0.7"
log = "0.4"
smallvec = "1"
wgpu = "0.8.0"
wgpu = "0.8"

# deps for simple_api_unstable
imgui-winit-support = { version = "0.7", optional = true }
Expand All @@ -38,7 +38,7 @@ winit = { version = ">= 0.23, < 0.25", optional = true }

[dev-dependencies]
bytemuck = { version = "1.4", features = ["derive"] }
cgmath = "0.17"
cgmath = "0.18"
futures = "0.3"
image = "0.23"
imgui-winit-support = "0.7"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ cargo run --release --example hello_world

# Status

Basic features are useable. Uses `wgpu-0.7.0` and `imgui-0.7.0` upstream. `winit-0.24` is used with the examples.
Basic features are useable. Uses `wgpu-0.8` and `imgui-0.7` upstream. `winit-0.24` is used with the examples.

Contributions are very welcome.

0 comments on commit d04d0e4

Please sign in to comment.