Skip to content

Commit

Permalink
Update crate version to 0.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
azriel91 authored and nadavrot committed Oct 29, 2022
1 parent 75ec9fa commit b854ced
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "layout-cli"
version = "0.1.0"
version = "0.1.1"
authors = ["Nadav Rotem <[email protected]>"]
edition = "2018"
description = "A graph visualization program"
Expand All @@ -25,7 +25,7 @@ bench = false
members = ["layout"]

[dependencies]
layout-rs = { path = "layout", features = ["log"], version = "0.1.0" }
layout-rs = { path = "layout", features = ["log"], version = "0.1.1" }
clap = "4.0.18"
log = "0.4.17"
env_logger = "0.9"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ can parse Graphviz dot files and render them.
Add the following to `Cargo.toml`:

```toml
layout-rs = "0.1.0" # or
layout-rs = { version = "0.1.0", features = ["log"] }
layout-rs = "0.1.1" # or
layout-rs = { version = "0.1.1", features = ["log"] }
```

Load, parse and print the AST:
Expand Down
2 changes: 1 addition & 1 deletion layout/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "layout-rs"
version = "0.1.0"
version = "0.1.1"
authors = ["Nadav Rotem <[email protected]>"]
edition = "2018"
description = "A graph visualization program"
Expand Down
4 changes: 2 additions & 2 deletions layout/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ This crate provides an API for parsing DOT files.
Add the following to `Cargo.toml`:
```toml
layout-rs = "0.1.0" # or
layout-rs = { version = "0.1.0", features = ["log"] }
layout-rs = "0.1.1" # or
layout-rs = { version = "0.1.1", features = ["log"] }
```
Load, parse and print the AST:
Expand Down

0 comments on commit b854ced

Please sign in to comment.