Skip to content

Commit

Permalink
Merge pull request #40 from azriel91/maintenance/release-0-9-0
Browse files Browse the repository at this point in the history
Update crate version to `0.9.0`.
  • Loading branch information
azriel91 authored Dec 15, 2024
2 parents 892f844 + d49210d commit b1cf2d8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ members = [
]

[workspace.package]
version = "0.8.1"
version = "0.9.0"
authors = ["Azriel Hoh <azriel91@gmail.com>"]
edition = "2021"
homepage = "https://github.com/azriel91/dot_ix"
Expand All @@ -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"
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.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"] }
```


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.1", path = ".." }
dot_ix = { version = "0.9.0", path = ".." }
gloo-net = { workspace = true, features = ["http"] }
leptos = { workspace = true }
leptos_axum = { workspace = true, optional = true }
Expand Down

0 comments on commit b1cf2d8

Please sign in to comment.