Skip to content

Commit

Permalink
fix(examples): use proper crate version
Browse files Browse the repository at this point in the history
Examples used a fixed version of the crate, meaning they could not work
unless a version was published prior to their building/running. Remove
the fixed version basing only on the path to the crate.

Signed-off-by: Filip Dutescu <[email protected]>
  • Loading branch information
filipdutescu committed Mar 26, 2023
1 parent a156348 commit c6f4982
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 11 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 0.2.1 (2023-03-25)

The previous version broke examples due to an increment of the crate version. This release
addresses the issue by updating the examples.

## Fixes

* Examples use the proper crate version

# 0.2.0 (2023-03-25)

The major point of this release is to add all of the [Bulma elements](https://bulma.io/documentation/elements/).
Expand Down
2 changes: 1 addition & 1 deletion examples/elements_block/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ license = "MIT OR Apache-2.0"

[dependencies]
yew = { version = "0.20.0", features = ["csr"] }
yew-and-bulma = { version = "0.1.0", path = "../.." }
yew-and-bulma = { path = "../.." }
2 changes: 1 addition & 1 deletion examples/elements_box/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ license = "MIT OR Apache-2.0"

[dependencies]
yew = { version = "0.20.0", features = ["csr"] }
yew-and-bulma = { version = "0.1.0", path = "../.." }
yew-and-bulma = { path = "../.." }
2 changes: 1 addition & 1 deletion examples/elements_button/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ license = "MIT OR Apache-2.0"

[dependencies]
yew = { version = "0.20.0", features = ["csr"] }
yew-and-bulma = { version = "0.1.0", path = "../.." }
yew-and-bulma = { path = "../.." }
2 changes: 1 addition & 1 deletion examples/elements_delete/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ license = "MIT OR Apache-2.0"

[dependencies]
yew = { version = "0.20.0", features = ["csr"] }
yew-and-bulma = { version = "0.1.0", path = "../.." }
yew-and-bulma = { path = "../.." }
2 changes: 1 addition & 1 deletion examples/elements_icon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ license = "MIT OR Apache-2.0"

[dependencies]
yew = { version = "0.20.0", features = ["csr"] }
yew-and-bulma = { version = "0.1.0", path = "../.." }
yew-and-bulma = { path = "../.." }
2 changes: 1 addition & 1 deletion examples/elements_image/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ license = "MIT OR Apache-2.0"

[dependencies]
yew = { version = "0.20.0", features = ["csr"] }
yew-and-bulma = { version = "0.1.0", path = "../.." }
yew-and-bulma = { path = "../.." }
2 changes: 1 addition & 1 deletion examples/elements_notification/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ license = "MIT OR Apache-2.0"

[dependencies]
yew = { version = "0.20.0", features = ["csr"] }
yew-and-bulma = { version = "0.1.0", path = "../.." }
yew-and-bulma = { path = "../.." }
2 changes: 1 addition & 1 deletion examples/elements_progress/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ license = "MIT OR Apache-2.0"

[dependencies]
yew = { version = "0.20.0", features = ["csr"] }
yew-and-bulma = { version = "0.1.0", path = "../.." }
yew-and-bulma = { path = "../.." }
2 changes: 1 addition & 1 deletion examples/elements_table/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ license = "MIT OR Apache-2.0"

[dependencies]
yew = { version = "0.20.0", features = ["csr"] }
yew-and-bulma = { version = "0.1.0", path = "../.." }
yew-and-bulma = { path = "../.." }
2 changes: 1 addition & 1 deletion examples/elements_tag/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ license = "MIT OR Apache-2.0"

[dependencies]
yew = { version = "0.20.0", features = ["csr"] }
yew-and-bulma = { version = "0.1.0", path = "../.." }
yew-and-bulma = { path = "../.." }
2 changes: 1 addition & 1 deletion examples/elements_title/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ license = "MIT OR Apache-2.0"

[dependencies]
yew = { version = "0.20.0", features = ["csr"] }
yew-and-bulma = { version = "0.1.0", path = "../.." }
yew-and-bulma = { path = "../.." }

0 comments on commit c6f4982

Please sign in to comment.