-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ab85f09
commit e5ae59b
Showing
8 changed files
with
83 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.4.1](https://github.com/flying-sheep/rust-rst/compare/document_tree-v0.4.0...document_tree-v0.4.1) - 2024-11-20 | ||
|
||
### Other | ||
|
||
- Bump deps and refresh token ([#59](https://github.com/flying-sheep/rust-rst/pull/59)) | ||
- Bump serde-xml-rs to 0.5 ([#51](https://github.com/flying-sheep/rust-rst/pull/51)) | ||
- Migrate from quicli/failure to plain clap/anyhow ([#50](https://github.com/flying-sheep/rust-rst/pull/50)) | ||
- Format ([#38](https://github.com/flying-sheep/rust-rst/pull/38)) | ||
- Add CI ([#36](https://github.com/flying-sheep/rust-rst/pull/36)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = 'document_tree' | ||
version = '0.4.0' | ||
version = "0.4.1" | ||
authors = ['Philipp A. <[email protected]>'] | ||
edition = '2018' | ||
description = 'reStructuredText’s DocumentTree representation' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.4.1](https://github.com/flying-sheep/rust-rst/compare/rst_parser-v0.4.0...rst_parser-v0.4.1) - 2024-11-20 | ||
|
||
### Other | ||
|
||
- Handle images with multiple options ([#53](https://github.com/flying-sheep/rust-rst/pull/53)) | ||
- Fix parsing of percentage in image scale attributes ([#54](https://github.com/flying-sheep/rust-rst/pull/54)) | ||
- Migrate from quicli/failure to plain clap/anyhow ([#50](https://github.com/flying-sheep/rust-rst/pull/50)) | ||
- Trailing newlines ([#31](https://github.com/flying-sheep/rust-rst/pull/31)) | ||
- Format ([#38](https://github.com/flying-sheep/rust-rst/pull/38)) | ||
- Add CI ([#36](https://github.com/flying-sheep/rust-rst/pull/36)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = 'rst_parser' | ||
version = '0.4.0' | ||
version = "0.4.1" | ||
authors = ['Philipp A. <[email protected]>'] | ||
edition = '2018' | ||
description = 'a reStructuredText parser' | ||
|
@@ -12,7 +12,7 @@ homepage = 'https://github.com/flying-sheep/rust-rst' | |
repository = 'https://github.com/flying-sheep/rust-rst' | ||
|
||
[dependencies] | ||
document_tree = { path = '../document_tree', version = '0.4.0' } | ||
document_tree = { path = '../document_tree', version = "0.4.1" } | ||
|
||
anyhow = '1.0.86' | ||
pest = '2.1.2' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.4.1](https://github.com/flying-sheep/rust-rst/compare/rst_renderer-v0.4.0...rst_renderer-v0.4.1) - 2024-11-20 | ||
|
||
### Other | ||
|
||
- Bump deps and refresh token ([#59](https://github.com/flying-sheep/rust-rst/pull/59)) | ||
- Bump serde-xml-rs to 0.5 ([#51](https://github.com/flying-sheep/rust-rst/pull/51)) | ||
- Migrate from quicli/failure to plain clap/anyhow ([#50](https://github.com/flying-sheep/rust-rst/pull/50)) | ||
- Format ([#38](https://github.com/flying-sheep/rust-rst/pull/38)) | ||
- Add CI ([#36](https://github.com/flying-sheep/rust-rst/pull/36)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = 'rst_renderer' | ||
version = '0.4.0' | ||
version = "0.4.1" | ||
authors = ['Philipp A. <[email protected]>'] | ||
edition = '2018' | ||
description = 'a reStructuredText renderer' | ||
|
@@ -12,7 +12,7 @@ homepage = 'https://github.com/flying-sheep/rust-rst' | |
repository = 'https://github.com/flying-sheep/rust-rst' | ||
|
||
[dependencies] | ||
document_tree = { path = '../document_tree', version = '0.4.0' } | ||
document_tree = { path = '../document_tree', version = "0.4.1" } | ||
|
||
anyhow = '1.0.86' | ||
serde_json = '1.0.44' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.4.1](https://github.com/flying-sheep/rust-rst/compare/rst-v0.4.0...rst-v0.4.1) - 2024-11-20 | ||
|
||
### Other | ||
|
||
- Bump deps and refresh token ([#59](https://github.com/flying-sheep/rust-rst/pull/59)) | ||
- Migrate from quicli/failure to plain clap/anyhow ([#50](https://github.com/flying-sheep/rust-rst/pull/50)) | ||
- Clean up main ([#44](https://github.com/flying-sheep/rust-rst/pull/44)) | ||
- Allow reading from standard input ([#34](https://github.com/flying-sheep/rust-rst/pull/34)) | ||
- Trailing newlines ([#31](https://github.com/flying-sheep/rust-rst/pull/31)) | ||
- Format ([#38](https://github.com/flying-sheep/rust-rst/pull/38)) | ||
- Add CI ([#36](https://github.com/flying-sheep/rust-rst/pull/36)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = 'rst' | ||
version = '0.4.0' | ||
version = "0.4.1" | ||
authors = ['Philipp A. <[email protected]>'] | ||
edition = '2018' | ||
description = 'a reStructuredText parser and renderer for the command line' | ||
|
@@ -12,8 +12,8 @@ homepage = 'https://github.com/flying-sheep/rust-rst' | |
repository = 'https://github.com/flying-sheep/rust-rst' | ||
|
||
[dependencies] | ||
rst_renderer = { path = '../renderer', version = '0.4.0' } | ||
rst_parser = { path = '../parser', version = '0.4.0' } | ||
rst_renderer = { path = '../renderer', version = "0.4.1" } | ||
rst_parser = { path = '../parser', version = "0.4.1" } | ||
|
||
anyhow = '1.0.86' | ||
clap = { version = '4', features = ['derive'] } | ||
|