Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flying-sheep committed Dec 26, 2019
1 parent a0e3c53 commit 0f1a3e3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
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.2.0'
version = '0.3.0'
authors = ['Philipp A. <[email protected]>']
description = 'reStructuredText’s DocumenTree representation'
license = 'MIT OR Apache-2.0'
Expand Down
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.2.0'
version = '0.3.0'
authors = ['Philipp A. <[email protected]>']
edition = '2018'
description = 'a reStructuredText parser'
Expand All @@ -11,7 +11,7 @@ homepage = 'https://github.com/flying-sheep/rust-rst'
repository = 'https://github.com/flying-sheep/rust-rst.git'

[dependencies]
document_tree = { path = '../document_tree' }
document_tree = { path = '../document_tree', version = '0.3.0' }

pest = '2.1.2'
pest_derive = '2.1.0'
Expand Down
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.2.0'
version = '0.3.0'
authors = ['Philipp A. <[email protected]>']
edition = '2018'
description = 'a reStructuredText renderer'
Expand All @@ -11,7 +11,7 @@ homepage = 'https://github.com/flying-sheep/rust-rst'
repository = 'https://github.com/flying-sheep/rust-rst.git'

[dependencies]
document_tree = { path = '../document_tree' }
document_tree = { path = '../document_tree', version = '0.3.0' }

failure = '0.1.6'
serde_json = '1.0.44'
Expand Down
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.2.0'
version = '0.3.0'
authors = ['Philipp A. <[email protected]>']
edition = '2018'
description = 'a reStructuredText parser and renderer for the command line'
Expand All @@ -11,8 +11,8 @@ homepage = 'https://github.com/flying-sheep/rust-rst'
repository = 'https://github.com/flying-sheep/rust-rst.git'

[dependencies]
rst_renderer = { path = '../renderer' }
rst_parser = { path = '../parser' }
rst_renderer = { path = '../renderer', version = '0.3.0' }
rst_parser = { path = '../parser', version = '0.3.0' }

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

0 comments on commit 0f1a3e3

Please sign in to comment.