diff --git a/Cargo.lock b/Cargo.lock index 6840b19..2c700f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "basalt-core" -version = "0.2.1" +version = "0.2.2" dependencies = [ "dirs", "indoc", diff --git a/basalt-core/CHANGELOG.md b/basalt-core/CHANGELOG.md index 0a36b81..b8826b5 100644 --- a/basalt-core/CHANGELOG.md +++ b/basalt-core/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 0.2.2 (2025-02-27) + +### Added + +- [Add blank implementations for `TextNode` and `Text`](https://github.com/erikjuhani/basalt/commit/a252f62930ec59f21255d08278762734eb312cef) + +### Fixed + +- [Fix skipping text nodes in markdown parser](https://github.com/erikjuhani/basalt/commit/3bc112edd2b452ea7093d0e71fcfa0d02bc0b9c4) + ## 0.2.1 (2025-02-23) ### Added diff --git a/basalt-core/Cargo.toml b/basalt-core/Cargo.toml index 5985b01..616853f 100644 --- a/basalt-core/Cargo.toml +++ b/basalt-core/Cargo.toml @@ -6,7 +6,7 @@ Provides the core functionality for Basalt TUI application readme = "README.md" repository = "https://github.com/erikjuhani/basalt" license = "MIT" -version = "0.2.1" +version = "0.2.2" edition = "2021" [dependencies] diff --git a/basalt-core/src/markdown.rs b/basalt-core/src/markdown.rs index 7c61713..810dfe2 100644 --- a/basalt-core/src/markdown.rs +++ b/basalt-core/src/markdown.rs @@ -151,6 +151,21 @@ pub struct TextNode { pub style: Option