From f06fe35f7537feb28c7c38b33c1bca9ff4ebd2a9 Mon Sep 17 00:00:00 2001 From: Philipp A Date: Sun, 1 Nov 2020 16:48:49 +0100 Subject: [PATCH] v0.4.0 --- document_tree/Cargo.toml | 2 +- parser/Cargo.toml | 4 ++-- renderer/Cargo.toml | 4 ++-- rst/Cargo.toml | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/document_tree/Cargo.toml b/document_tree/Cargo.toml index 9e1c481..9a3ccc8 100644 --- a/document_tree/Cargo.toml +++ b/document_tree/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'document_tree' -version = '0.3.0' +version = '0.4.0' authors = ['Philipp A. '] edition = '2018' description = 'reStructuredText’s DocumentTree representation' diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 18e38ae..721d6da 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'rst_parser' -version = '0.3.2' +version = '0.4.0' authors = ['Philipp A. '] 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.3.0' } +document_tree = { path = '../document_tree', version = '0.4.0' } pest = '2.1.2' pest_derive = '2.1.0' diff --git a/renderer/Cargo.toml b/renderer/Cargo.toml index 051d175..20b92bc 100644 --- a/renderer/Cargo.toml +++ b/renderer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'rst_renderer' -version = '0.3.1' +version = '0.4.0' authors = ['Philipp A. '] 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.3.0' } +document_tree = { path = '../document_tree', version = '0.4.0' } failure = '0.1.6' serde_json = '1.0.44' diff --git a/rst/Cargo.toml b/rst/Cargo.toml index a0a288e..310fab6 100644 --- a/rst/Cargo.toml +++ b/rst/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'rst' -version = '0.3.0' +version = '0.4.0' authors = ['Philipp A. '] 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.3.0' } -rst_parser = { path = '../parser', version = '0.3.0' } +rst_renderer = { path = '../renderer', version = '0.4.0' } +rst_parser = { path = '../parser', version = '0.4.0' } quicli = '0.4.0' structopt = '0.2.15'