Skip to content

Commit 1d620b9

Browse files
committed
chore: Release hub75-framebuffer version 0.4.1
1 parent d0d4771 commit 1d620b9

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased] - ReleaseDate
1111

12+
## [0.4.1] - 2025-08-14
13+
1214
## [0.4.0] - 2025-08-14
1315

1416
### Added
@@ -47,7 +49,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4749
* initial version
4850

4951
<!-- next-url -->
50-
[Unreleased]: https://github.com/liebman/hub75-framebuffer/compare/v0.4.0...HEAD
52+
[Unreleased]: https://github.com/liebman/hub75-framebuffer/compare/v0.4.1...HEAD
53+
[0.4.1]: https://github.com/liebman/hub75-framebuffer/compare/v0.4.0...v0.4.1
5154
[0.4.0]: https://github.com/liebman/hub75-framebuffer/compare/v0.3.0...v0.4.0
5255
[0.3.0]: https://github.com/liebman/hub75-framebuffer/compare/v0.2.0...v0.3.0
5356
[0.2.0]: https://github.com/liebman/hub75-framebuffer/compare/v0.1.0...v0.2.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ documentation = "https://docs.rs/hub75-framebuffer"
66
keywords = ["led-matrix", "hub75", "embedded", "framebuffer"]
77
categories = ["embedded", "hardware-support", "no-std"]
88
edition = "2021"
9-
version = "0.4.0"
9+
version = "0.4.1"
1010
readme = "README.md"
1111
authors = ["liebman <liebman@zod.com>"]
1212
license = "MIT OR Apache-2.0"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Add the dependency to your `Cargo.toml`:
6868

6969
```toml
7070
[dependencies]
71-
hub75-framebuffer = "0.4.0"
71+
hub75-framebuffer = "0.4.1"
7272
```
7373

7474
### Choose your parameters
@@ -122,7 +122,7 @@ to `esp-hal::dma`. If you're targeting ESP32 devices with `esp-hal`, you
122122

123123
```toml
124124
[dependencies]
125-
hub75-framebuffer = { version = "0.4.0", features = ["esp-hal-dma"] }
125+
hub75-framebuffer = { version = "0.4.1", features = ["esp-hal-dma"] }
126126
```
127127

128128
### `esp32-ordering` (required for original ESP32 only)
@@ -134,7 +134,7 @@ ESP32 variants (S2, S3, C3, etc.) do **not** need this feature.
134134

135135
```toml
136136
[dependencies]
137-
hub75-framebuffer = { version = "0.4.0", features = ["esp32-ordering"] }
137+
hub75-framebuffer = { version = "0.4.1", features = ["esp32-ordering"] }
138138
```
139139

140140
### `skip-black-pixels`
@@ -157,7 +157,7 @@ Enable features in your `Cargo.toml`:
157157

158158
```toml
159159
[dependencies]
160-
hub75-framebuffer = { version = "0.4.0",
160+
hub75-framebuffer = { version = "0.4.1",
161161
features = ["esp-hal-dma", "esp32-ordering"] }
162162
```
163163

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
//!
7272
//! ```toml
7373
//! [dependencies]
74-
//! hub75-framebuffer = { version = "0.4.0", features = ["skip-black-pixels"] }
74+
//! hub75-framebuffer = { version = "0.4.1", features = ["skip-black-pixels"] }
7575
//! ```
7676
//!
7777
//! ### `esp-hal-dma` Feature (required when using `esp-hal`)
@@ -82,7 +82,7 @@
8282
//!
8383
//! ```toml
8484
//! [dependencies]
85-
//! hub75-framebuffer = { version = "0.4.0", features = ["esp-hal-dma"] }
85+
//! hub75-framebuffer = { version = "0.4.1", features = ["esp-hal-dma"] }
8686
//! ```
8787
//!
8888
//! ### `esp32-ordering` Feature (required for original ESP32 only)
@@ -94,7 +94,7 @@
9494
//!
9595
//! ```toml
9696
//! [dependencies]
97-
//! hub75-framebuffer = { version = "0.4.0", features = ["esp32-ordering"] }
97+
//! hub75-framebuffer = { version = "0.4.1", features = ["esp32-ordering"] }
9898
//! ```
9999
//!
100100
//! ### `defmt` Feature

0 commit comments

Comments
 (0)