Skip to content

Commit 670c53f

Browse files
authored
Update e-g dependency (#18)
1 parent a64a00e commit 670c53f

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

CHANGELOG.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,26 @@
88

99
### Added
1010

11-
- [#16](https://github.com/embedded-graphics/tinybmp/pull/16) Added support for bottom right and top right image origins.
11+
- [#16](https://github.com/embedded-graphics/tinytga/pull/16) Added support for bottom right and top right image origins.
1212

1313
### Changed
1414

15-
- **(breaking)** [#16](https://github.com/embedded-graphics/tinybmp/pull/16) Use 1.61 as MSRV.
16-
- **(breaking)** [#16](https://github.com/embedded-graphics/tinybmp/pull/16) Replaced `ImageType` enum with `DataType` and `Compression`.
17-
- **(breaking)** [#16](https://github.com/embedded-graphics/tinybmp/pull/16) Color types used with `Tga` are now required to implement `From<Gray8> + From<Rgb555> + From<Rgb888>`.
18-
- [#16](https://github.com/embedded-graphics/tinybmp/pull/16) Improved drawing performance for bottom left origin images by using `fill_contiguous`.
19-
- [#16](https://github.com/embedded-graphics/tinybmp/pull/16) Use correct lifetimes for `RawTga::image_id`, `RawTga::developer_dictionary` and `RawTga::extension_area`.
15+
- **(breaking)** [#16](https://github.com/embedded-graphics/tinytga/pull/16) Use 1.61 as MSRV.
16+
- **(breaking)** [#16](https://github.com/embedded-graphics/tinytga/pull/16) Replaced `ImageType` enum with `DataType` and `Compression`.
17+
- **(breaking)** [#16](https://github.com/embedded-graphics/tinytga/pull/16) Color types used with `Tga` are now required to implement `From<Gray8> + From<Rgb555> + From<Rgb888>`.
18+
- [#16](https://github.com/embedded-graphics/tinytga/pull/16) Improved drawing performance for bottom left origin images by using `fill_contiguous`.
19+
- [#16](https://github.com/embedded-graphics/tinytga/pull/16) Use correct lifetimes for `RawTga::image_id`, `RawTga::developer_dictionary` and `RawTga::extension_area`.
20+
- **(breaking)** [#18](https://github.com/embedded-graphics/tinytga/pull/18) Updated `embedded-graphics` to `0.8`.
2021

2122
### Removed
2223

23-
- **(breaking)** [#16](https://github.com/embedded-graphics/tinybmp/pull/16) Removed `DynamicTga`, use `Tga` instead.
24+
- **(breaking)** [#16](https://github.com/embedded-graphics/tinytga/pull/16) Removed `DynamicTga`, use `Tga` instead.
2425

2526
## [0.4.1] - 2021-06-16
2627

2728
### Changed
2829

29-
- [#10](https://github.com/embedded-graphics/tinybmp/pull/10) Bump embedded-graphics minimum version from 0.7.0 to 0.7.1
30+
- [#10](https://github.com/embedded-graphics/tinytga/pull/10) Bump embedded-graphics minimum version from 0.7.0 to 0.7.1
3031

3132
## [0.4.0] - 2021-06-06
3233

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ name = "draw"
2424
harness = false
2525

2626
[dependencies]
27-
embedded-graphics = "0.7.1"
27+
embedded-graphics = "0.8.0"
2828
nom = { version = "7.1.1", default-features = false }
2929

3030
[dev-dependencies]
3131
paste = "1.0"
3232
criterion = "0.3.5"
3333
clap = { version = "3.2.22", features = ["derive"] }
34-
embedded-graphics-simulator = "0.4.0"
34+
embedded-graphics-simulator = "0.5.0"

0 commit comments

Comments
 (0)