Skip to content

Commit 1fd82bd

Browse files
authored
refactor(backend)!: remove framebuffer from the public API (#149)
1 parent 22f5e64 commit 1fd82bd

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

BREAKING-CHANGES.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ This document lists all breaking changes along with tips to help you migrate smo
44

55
## Summary
66

7-
- [v0.3.0](#v030---unreleased) - unreleased
7+
- [unreleased](#unreleased)
8+
- framebuffer module is no longer part of the public API
9+
- [v0.3.0](#v030)
810
- Feature `simulator` is removed
911
- Type of `EmbeddedBackendConfig::font_bold` is now `Option<MonoFont<'static>>`
1012
- `EmbeddedBackendConfig` now requires providing `font_italic`
@@ -20,7 +22,13 @@ This document lists all breaking changes along with tips to help you migrate smo
2022
- `EmbeddedBackend::new` now takes different arguments
2123
- [v0.0.1](#v001---initial-release) - initial release
2224

23-
## v0.3.0 - unreleased
25+
## Unreleased
26+
27+
### `framebuffer` module is no longer part of the public API ([#149])
28+
29+
[#149]: https://github.com/ratatui/mousefood/pull/149
30+
31+
## [v0.3.0](https://github.com/ratatui/mousefood/releases/tag/0.3.0)
2432

2533
### Feature `simulator` is removed ([#83])
2634

mousefood/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ mod colors;
88
mod default_font;
99
pub mod error;
1010
#[cfg(feature = "framebuffer")]
11-
pub mod framebuffer;
11+
mod framebuffer;
1212
mod macros;
1313
pub mod prelude;
1414

0 commit comments

Comments
 (0)