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
|
# Changelog
|
||||||
|
|
||||||
## Unreleased
|
## v0.6.0
|
||||||
### General notes
|
### General notes
|
||||||
* Updated imgui-rs dependency to 0.7
|
* Updated imgui-rs dependency to 0.7 (credit: @kylc)
|
||||||
* Examples: updated wgpu dependency to 0.10 and imgui-wgpu to 0.17
|
* 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
|
## v0.5.0
|
||||||
### General notes
|
### General notes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "implot"
|
name = "implot"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Sandro Merkli", "implot-rs contributors"]
|
authors = ["Sandro Merkli", "implot-rs contributors"]
|
||||||
description = "Rust bindings to https://github.com/epezent/implot"
|
description = "Rust bindings to https://github.com/epezent/implot"
|
||||||
|
@ -11,7 +11,7 @@ categories = ["gui", "api-bindings"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
implot-sys = { version = "0.5.0", path = "implot-sys" }
|
implot-sys = { version = "0.6.0", path = "implot-sys" }
|
||||||
imgui = { version = "=0.7.0" }
|
imgui = { version = "=0.7.0" }
|
||||||
bitflags = "1.0"
|
bitflags = "1.0"
|
||||||
parking_lot = "0.11"
|
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]]
|
[[package]]
|
||||||
name = "implot"
|
name = "implot"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"imgui",
|
"imgui",
|
||||||
|
@ -700,7 +700,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "implot-sys"
|
name = "implot-sys"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc",
|
"cc",
|
||||||
"imgui-sys",
|
"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]]
|
[[package]]
|
||||||
name = "implot"
|
name = "implot"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"imgui",
|
"imgui",
|
||||||
|
@ -624,7 +624,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "implot-sys"
|
name = "implot-sys"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc",
|
"cc",
|
||||||
"imgui-sys",
|
"imgui-sys",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "implot-sys"
|
name = "implot-sys"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Sandro Merkli", "implot-rs contributors"]
|
authors = ["Sandro Merkli", "implot-rs contributors"]
|
||||||
description = "Raw FFI bindings to implot"
|
description = "Raw FFI bindings to implot"
|
||||||
|
|
Loading…
Reference in a new issue