Skip to content

Commit 71f7664

Browse files
authored
Merge pull request #584 from phaazon/dependabot/cargo/master/glfw-0.44
Update glfw requirement from 0.43 to 0.44
2 parents 58b53f9 + 753590d commit 71f7664

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

examples/desktop/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ funtest-gl33-f64-uniform = ["luminance-examples/funtest-gl33-f64-uniform"]
2222

2323
[dependencies]
2424
env_logger = "0.9.0"
25-
glfw = "0.43"
25+
glfw = "0.44"
2626
image = "0.24.1"
2727
log = "0.4.11"
2828
luminance = { version = "0.47", path = "../../luminance" }

luminance-glfw/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ how `cargo` resolves dependencies. `cargo update` is not enough, because all lum
99
[SemVer ranges](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html) to stay
1010
compatible with as many crates as possible. In that case, you want `cargo update --aggressive`.
1111

12+
# 0.18.2
13+
14+
> Apr 22, 2022
15+
16+
- Support of `glfw-0.44`.
17+
1218
# 0.18.1
1319

1420
> Apr 12, 2022

luminance-glfw/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "luminance-glfw"
3-
version = "0.18.1"
3+
version = "0.18.2"
44
license = "BSD-3-Clause"
55
authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
66
description = "GLFW support for luminance"
@@ -18,7 +18,7 @@ maintenance = { status = "actively-developed" }
1818

1919
[dependencies]
2020
gl = "0.14"
21-
glfw = { version = "0.43", default-features = false }
21+
glfw = { version = ">=0.43, <0.45", default-features = false }
2222
luminance = { version = ">=0.46, <0.48", path = "../luminance" }
2323
luminance-gl = { version = "0.19", path = "../luminance-gl" }
2424

0 commit comments

Comments
 (0)