diff --git a/CHANGELOG.md b/CHANGELOG.md index 26c2b0ad..cba10389 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ - **(breaking)** [#175](https://github.com/jamwaffles/ssd1306/pull/175) Increased MSRV to 1.57.0 - **(breaking)** [#179](https://github.com/jamwaffles/ssd1306/pull/179) Changed `Ssd1306::reset` signature. +- [#181](https://github.com/jamwaffles/ssd1306/pull/181) Update embedded-graphics-core dependency to 0.4 ## [0.7.1] - 2022-08-15 diff --git a/Cargo.toml b/Cargo.toml index 77c3e983..ea19f601 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ embedded-hal = "0.2.5" display-interface = "0.4.1" display-interface-i2c = "0.4.0" display-interface-spi = "0.4.1" -embedded-graphics-core = { version = "0.3.2", optional = true } +embedded-graphics-core = { version = "0.4.0", optional = true } [dev-dependencies] cortex-m = "0.7.2" @@ -34,7 +34,7 @@ panic-halt = "0.2.0" cast = { version = "0.2.6", default-features = false } # Used to load BMP images in various examples tinybmp = "0.3.1" -embedded-graphics = "0.7.1" +embedded-graphics = "0.8.0" # Used by the noise_i2c examples rand = { version = "0.8.4", default-features = false, features = [ "small_rng" ] } stm32f1xx-hal = { version = "0.7.0", features = [ "rt", "stm32f103" ] }