Skip to content

Commit 3ce7dd8

Browse files
authored
chore: release v0.4.3
1 parent 70629f7 commit 3ce7dd8

File tree

8 files changed

+37
-8
lines changed

8 files changed

+37
-8
lines changed

document_tree/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.5.0](https://github.com/flying-sheep/rust-rst/compare/document_tree-v0.4.2...document_tree-v0.5.0) - 2026-01-21
11+
12+
### Other
13+
14+
- Schema ([#72](https://github.com/flying-sheep/rust-rst/pull/72))
15+
- Refactor standard transform ([#71](https://github.com/flying-sheep/rust-rst/pull/71))
16+
1017
## [0.4.2](https://github.com/flying-sheep/rust-rst/compare/document_tree-v0.4.1...document_tree-v0.4.2) - 2025-04-13
1118

1219
### Other

document_tree/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = 'document_tree'
3-
version = "0.4.2"
3+
version = "0.5.0"
44
authors = ['Philipp A. <flying-sheep@web.de>']
55
edition = '2024'
66
description = 'reStructuredText’s DocumentTree representation'

parser/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.3](https://github.com/flying-sheep/rust-rst/compare/rst_parser-v0.4.2...rst_parser-v0.4.3) - 2026-01-21
11+
12+
### Other
13+
14+
- Schema ([#72](https://github.com/flying-sheep/rust-rst/pull/72))
15+
- [pre-commit.ci] pre-commit autoupdate ([#73](https://github.com/flying-sheep/rust-rst/pull/73))
16+
- Refactor standard transform ([#71](https://github.com/flying-sheep/rust-rst/pull/71))
17+
1018
## [0.4.2](https://github.com/flying-sheep/rust-rst/compare/rst_parser-v0.4.1...rst_parser-v0.4.2) - 2025-04-13
1119

1220
### Other

parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = 'rst_parser'
3-
version = "0.4.2"
3+
version = "0.4.3"
44
authors = ['Philipp A. <flying-sheep@web.de>']
55
edition = '2024'
66
description = 'a reStructuredText parser'
@@ -12,7 +12,7 @@ homepage = 'https://github.com/flying-sheep/rust-rst'
1212
repository = 'https://github.com/flying-sheep/rust-rst'
1313

1414
[dependencies]
15-
document_tree = { path = '../document_tree', version = "0.4.2" }
15+
document_tree = { path = '../document_tree', version = "0.5.0" }
1616

1717
anyhow = '1.0.86'
1818
pest = '2.1.2'

renderer/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.3](https://github.com/flying-sheep/rust-rst/compare/rst_renderer-v0.4.2...rst_renderer-v0.4.3) - 2026-01-21
11+
12+
### Other
13+
14+
- Schema ([#72](https://github.com/flying-sheep/rust-rst/pull/72))
15+
- Refactor standard transform ([#71](https://github.com/flying-sheep/rust-rst/pull/71))
16+
- Better HTML ([#69](https://github.com/flying-sheep/rust-rst/pull/69))
17+
1018
## [0.4.2](https://github.com/flying-sheep/rust-rst/compare/rst_renderer-v0.4.1...rst_renderer-v0.4.2) - 2025-04-13
1119

1220
### Other

renderer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = 'rst_renderer'
3-
version = "0.4.2"
3+
version = "0.4.3"
44
authors = ['Philipp A. <flying-sheep@web.de>']
55
edition = '2024'
66
description = 'a reStructuredText renderer'
@@ -12,7 +12,7 @@ homepage = 'https://github.com/flying-sheep/rust-rst'
1212
repository = 'https://github.com/flying-sheep/rust-rst'
1313

1414
[dependencies]
15-
document_tree = { path = '../document_tree', version = "0.4.2" }
15+
document_tree = { path = '../document_tree', version = "0.5.0" }
1616

1717
anyhow = '1.0.86'
1818
serde_json = '1.0.44'

rst/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.3](https://github.com/flying-sheep/rust-rst/compare/rst-v0.4.2...rst-v0.4.3) - 2026-01-21
11+
12+
### Other
13+
14+
- Schema ([#72](https://github.com/flying-sheep/rust-rst/pull/72))
15+
1016
## [0.4.2](https://github.com/flying-sheep/rust-rst/compare/rst-v0.4.1...rst-v0.4.2) - 2025-04-13
1117

1218
### Other

rst/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = 'rst'
3-
version = "0.4.2"
3+
version = "0.4.3"
44
authors = ['Philipp A. <flying-sheep@web.de>']
55
edition = '2024'
66
description = 'a reStructuredText parser and renderer for the command line'
@@ -12,8 +12,8 @@ homepage = 'https://github.com/flying-sheep/rust-rst'
1212
repository = 'https://github.com/flying-sheep/rust-rst'
1313

1414
[dependencies]
15-
rst_renderer = { path = '../renderer', version = "0.4.2" }
16-
rst_parser = { path = '../parser', version = "0.4.2" }
15+
rst_renderer = { path = '../renderer', version = "0.4.3" }
16+
rst_parser = { path = '../parser', version = "0.4.3" }
1717

1818
anyhow = '1.0.86'
1919
clap = { version = '4', features = ['derive'] }

0 commit comments

Comments
 (0)