Skip to content

Commit

Permalink
Update crate version to 0.8.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
azriel91 committed Sep 27, 2024
1 parent 92ab186 commit 2353bc4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## unreleased
## 0.8.1 (2024-09-27)

* Support inline images ([#33]).
* Support `splines` in `GraphvizAttrs`.
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ members = [
]

[workspace.package]
version = "0.8.0"
version = "0.8.1"
authors = ["Azriel Hoh <azriel91@gmail.com>"]
edition = "2021"
homepage = "https://github.com/azriel91/dot_ix"
Expand All @@ -55,11 +55,11 @@ license = "MIT OR Apache-2.0"

[workspace.dependencies]
# dot_ix crates
dot_ix = { version = "0.8.0", path = "." }
dot_ix_model = { version = "0.8.0", path = "crate/model" }
dot_ix_rt = { version = "0.8.0", path = "crate/rt" }
dot_ix_static_check_macros = { version = "0.8.0", path = "crate/static_check_macros" }
dot_ix_web_components = { version = "0.8.0", path = "crate/web_components" }
dot_ix = { version = "0.8.1", path = "." }
dot_ix_model = { version = "0.8.1", path = "crate/model" }
dot_ix_rt = { version = "0.8.1", path = "crate/rt" }
dot_ix_static_check_macros = { version = "0.8.1", path = "crate/static_check_macros" }
dot_ix_web_components = { version = "0.8.1", path = "crate/web_components" }

# external crates
axum = "0.7.6"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ https://user-images.githubusercontent.com/2993230/253878816-0729970f-651f-45ef-a
Add the following to `Cargo.toml`

```toml
dot_ix = "0.8.0"
dot_ix = "0.8.1"

# Enables the `FlexDiag` web component.
dot_ix = { version = "0.8.0", features = ["flex_diag"] }
dot_ix = { version = "0.8.1", features = ["flex_diag"] }

# Enables server side dot generation.
# Requires graphviz `dot` to be installed server side.
dot_ix = { version = "0.8.0", features = ["server_side_graphviz"] }
dot_ix = { version = "0.8.1", features = ["server_side_graphviz"] }
```


Expand Down
2 changes: 1 addition & 1 deletion playground/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ axum = { workspace = true, optional = true }
console_error_panic_hook = { workspace = true }
console_log = { workspace = true }
cfg-if = { workspace = true }
dot_ix = { version = "0.8.0", path = "..", features = ["flex_diag"] }
dot_ix = { version = "0.8.1", path = "..", features = ["flex_diag"] }
gloo-net = { workspace = true, features = ["http"] }
leptos = { workspace = true }
leptos_axum = { workspace = true, optional = true }
Expand Down

0 comments on commit 2353bc4

Please sign in to comment.