From d49210dd848ffffb7d694eeb74163e521228b6a1 Mon Sep 17 00:00:00 2001 From: Azriel Hoh Date: Sun, 15 Dec 2024 18:46:02 +1300 Subject: [PATCH] Update crate version to `0.9.0`. --- CHANGELOG.md | 3 ++- Cargo.toml | 12 ++++++------ README.md | 6 +++--- playground/Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f739fda..b72097e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ # Changelog -## unreleased +## 0.9.0 (2024-12-15) +* ***Breaking:*** Upgrade to `leptos 0.7.0` * Support `margins` in `GraphvizAttrs`. * Support `margin_cluster_default` in `GraphvizAttrs`. * Support `margin_node_default` in `GraphvizAttrs`. diff --git a/Cargo.toml b/Cargo.toml index 23e96b6..7af5a68 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ members = [ ] [workspace.package] -version = "0.8.1" +version = "0.9.0" authors = ["Azriel Hoh "] edition = "2021" homepage = "https://github.com/azriel91/dot_ix" @@ -54,11 +54,11 @@ license = "MIT OR Apache-2.0" [workspace.dependencies] # dot_ix crates -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" } +dot_ix = { version = "0.9.0", path = "." } +dot_ix_model = { version = "0.9.0", path = "crate/model" } +dot_ix_rt = { version = "0.9.0", path = "crate/rt" } +dot_ix_static_check_macros = { version = "0.9.0", path = "crate/static_check_macros" } +dot_ix_web_components = { version = "0.9.0", path = "crate/web_components" } # external crates axum = "0.7.9" diff --git a/README.md b/README.md index dad8fe9..32bdaca 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.1" +dot_ix = "0.9.0" # Enables the `FlexDiag` web component. -dot_ix = { version = "0.8.1", features = ["flex_diag"] } +dot_ix = { version = "0.9.0", features = ["flex_diag"] } # Enables server side dot generation. # Requires graphviz `dot` to be installed server side. -dot_ix = { version = "0.8.1", features = ["server_side_graphviz"] } +dot_ix = { version = "0.9.0", features = ["server_side_graphviz"] } ``` diff --git a/playground/Cargo.toml b/playground/Cargo.toml index b239b96..b36cf53 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.1", path = ".." } +dot_ix = { version = "0.9.0", path = ".." } gloo-net = { workspace = true, features = ["http"] } leptos = { workspace = true } leptos_axum = { workspace = true, optional = true }