Bumped versions, prepared changelog for release

This commit is contained in:
4bb4 2021-09-19 09:48:31 +02:00
parent 3231f488e3
commit 07403f5802
5 changed files with 14 additions and 10 deletions

View file

@ -1,9 +1,13 @@
# Changelog
## Unreleased
## v0.6.0
### General notes
* Updated imgui-rs dependency to 0.7
* Examples: updated wgpu dependency to 0.10 and imgui-wgpu to 0.17
* Updated imgui-rs dependency to 0.7 (credit: @kylc)
* Examples: updated wgpu dependency to 0.10 and imgui-wgpu to 0.17 (credit: @kylc)
### API changes
* None, but the minor version is increased anyway because I consider the
updated imgui-rs dependency an API change.
## v0.5.0
### General notes

View file

@ -1,6 +1,6 @@
[package]
name = "implot"
version = "0.5.0"
version = "0.6.0"
edition = "2018"
authors = ["Sandro Merkli", "implot-rs contributors"]
description = "Rust bindings to https://github.com/epezent/implot"
@ -11,7 +11,7 @@ categories = ["gui", "api-bindings"]
readme = "README.md"
[dependencies]
implot-sys = { version = "0.5.0", path = "implot-sys" }
implot-sys = { version = "0.6.0", path = "implot-sys" }
imgui = { version = "=0.7.0" }
bitflags = "1.0"
parking_lot = "0.11"

View file

@ -673,7 +673,7 @@ dependencies = [
[[package]]
name = "implot"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"bitflags",
"imgui",
@ -700,7 +700,7 @@ dependencies = [
[[package]]
name = "implot-sys"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"cc",
"imgui-sys",

View file

@ -613,7 +613,7 @@ dependencies = [
[[package]]
name = "implot"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"bitflags",
"imgui",
@ -624,7 +624,7 @@ dependencies = [
[[package]]
name = "implot-sys"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"cc",
"imgui-sys",

View file

@ -1,6 +1,6 @@
[package]
name = "implot-sys"
version = "0.5.0"
version = "0.6.0"
edition = "2018"
authors = ["Sandro Merkli", "implot-rs contributors"]
description = "Raw FFI bindings to implot"