Skip to content

Commit 33e0418

Browse files
committed
v0.4.0
1 parent 44e9d2b commit 33e0418

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

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.3.0'
3+
version = '0.4.0'
44
authors = ['Philipp A. <flying-sheep@web.de>']
55
edition = '2018'
66
description = 'reStructuredText’s DocumentTree representation'

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.3.2'
3+
version = '0.4.0'
44
authors = ['Philipp A. <flying-sheep@web.de>']
55
edition = '2018'
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.3.0' }
15+
document_tree = { path = '../document_tree', version = '0.4.0' }
1616

1717
pest = '2.1.2'
1818
pest_derive = '2.1.0'

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.3.1'
3+
version = '0.4.0'
44
authors = ['Philipp A. <flying-sheep@web.de>']
55
edition = '2018'
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.3.0' }
15+
document_tree = { path = '../document_tree', version = '0.4.0' }
1616

1717
failure = '0.1.6'
1818
serde_json = '1.0.44'

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.3.0'
3+
version = '0.4.0'
44
authors = ['Philipp A. <flying-sheep@web.de>']
55
edition = '2018'
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.3.0' }
16-
rst_parser = { path = '../parser', version = '0.3.0' }
15+
rst_renderer = { path = '../renderer', version = '0.4.0' }
16+
rst_parser = { path = '../parser', version = '0.4.0' }
1717

1818
quicli = '0.4.0'
1919
structopt = '0.2.15'

0 commit comments

Comments
 (0)