diff --git a/CHANGELOG.md b/CHANGELOG.md index a999b55..f551bbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## unreleased +## 0.8.1 (2024-09-27) * Support inline images ([#33]). * Support `splines` in `GraphvizAttrs`. diff --git a/Cargo.toml b/Cargo.toml index 2e6fb66..f626f21 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,7 +43,7 @@ members = [ ] [workspace.package] -version = "0.8.0" +version = "0.8.1" authors = ["Azriel Hoh "] edition = "2021" homepage = "https://github.com/azriel91/dot_ix" @@ -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" diff --git a/README.md b/README.md index 514f32d..dad8fe9 100644 --- a/README.md +++ b/README.md @@ -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"] } ``` diff --git a/playground/Cargo.toml b/playground/Cargo.toml index 3b74e36..b23bc5b 100644 --- a/playground/Cargo.toml +++ b/playground/Cargo.toml @@ -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 }