Bumped versions, prepared changelog for release
This commit is contained in:
parent
3231f488e3
commit
07403f5802
5 changed files with 14 additions and 10 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
4
implot-examples/implot-glium-demo/Cargo.lock
generated
4
implot-examples/implot-glium-demo/Cargo.lock
generated
|
@ -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",
|
||||
|
|
4
implot-examples/implot-wgpu-demo/Cargo.lock
generated
4
implot-examples/implot-wgpu-demo/Cargo.lock
generated
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue