Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #40

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions document_tree/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# 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) - 2023-12-28

### Other
- Trailing newlines ([#31](https://github.com/flying-sheep/rust-rst/pull/31))
2 changes: 1 addition & 1 deletion document_tree/Cargo.toml
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'
Expand Down
12 changes: 12 additions & 0 deletions parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# 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) - 2023-12-28

### Other
- Trailing newlines ([#31](https://github.com/flying-sheep/rust-rst/pull/31))
4 changes: 2 additions & 2 deletions parser/Cargo.toml
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'
Expand All @@ -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" }

pest = '2.1.2'
pest_derive = '2.1.0'
Expand Down
12 changes: 12 additions & 0 deletions renderer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# 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) - 2023-12-28

### Other
- Trailing newlines ([#31](https://github.com/flying-sheep/rust-rst/pull/31))
4 changes: 2 additions & 2 deletions renderer/Cargo.toml
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'
Expand All @@ -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" }

failure = '0.1.6'
serde_json = '1.0.44'
Expand Down
12 changes: 12 additions & 0 deletions rst/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# 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) - 2023-12-28

### Other
- Trailing newlines ([#31](https://github.com/flying-sheep/rust-rst/pull/31))
6 changes: 3 additions & 3 deletions rst/Cargo.toml
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'
Expand All @@ -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" }

quicli = '0.4.0'
structopt = '0.2.15'
Expand Down