Skip to content

Commit

Permalink
chore: bump workspace to 0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpasmantier committed Jan 20, 2025
1 parent 8bbebf7 commit f45bd7c
Show file tree
Hide file tree
Showing 8 changed files with 267 additions and 172 deletions.
397 changes: 246 additions & 151 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "television"
version = "0.9.3"
version = "0.9.4"
edition = "2021"
description = "The revolution will be televised."
license = "MIT"
Expand Down Expand Up @@ -73,12 +73,12 @@ ratatui = { version = "0.29.0", features = ["serde", "macros"] }

[dependencies]
# local dependencies
television-fuzzy = { path = "crates/television-fuzzy", version = "0.0.22" }
television-derive = { path = "crates/television-derive", version = "0.0.22" }
television-screen = { path = "crates/television-screen", version = "0.0.22" }
television-channels = { path = "crates/television-channels", version = "0.0.22" }
television-previewers = { path = "crates/television-previewers", version = "0.0.22" }
television-utils = { path = "crates/television-utils", version = "0.0.22" }
television-fuzzy = { path = "crates/television-fuzzy", version = "0.0.23" }
television-derive = { path = "crates/television-derive", version = "0.0.23" }
television-screen = { path = "crates/television-screen", version = "0.0.23" }
television-channels = { path = "crates/television-channels", version = "0.0.23" }
television-previewers = { path = "crates/television-previewers", version = "0.0.23" }
television-utils = { path = "crates/television-utils", version = "0.0.23" }

# workspace dependencies
directories = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions crates/television-channels/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "television-channels"
version = "0.0.22"
version = "0.0.23"
description.workspace = true
authors.workspace = true
repository.workspace = true
Expand All @@ -13,9 +13,9 @@ edition.workspace = true
rust-version.workspace = true

[dependencies]
television-fuzzy = { path = "../television-fuzzy", version = "0.0.22" }
television-utils = { path = "../television-utils", version = "0.0.22" }
television-derive = { path = "../television-derive", version = "0.0.22" }
television-fuzzy = { path = "../television-fuzzy", version = "0.0.23" }
television-utils = { path = "../television-utils", version = "0.0.23" }
television-derive = { path = "../television-derive", version = "0.0.23" }

tracing = { workspace = true }
tokio = { workspace = true, features = ["rt"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/television-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "television-derive"
version = "0.0.22"
version = "0.0.23"
description.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/television-fuzzy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "television-fuzzy"
version = "0.0.22"
version = "0.0.23"
description.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions crates/television-previewers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "television-previewers"
version = "0.0.22"
version = "0.0.23"
description.workspace = true
authors.workspace = true
repository.workspace = true
Expand All @@ -13,8 +13,8 @@ edition.workspace = true
rust-version.workspace = true

[dependencies]
television-channels = { path = "../television-channels", version = "0.0.22" }
television-utils = { path = "../television-utils", version = "0.0.22" }
television-channels = { path = "../television-channels", version = "0.0.23" }
television-utils = { path = "../television-utils", version = "0.0.23" }

syntect = { workspace = true }
devicons = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions crates/television-screen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "television-screen"
version = "0.0.22"
version = "0.0.23"
description.workspace = true
authors.workspace = true
repository.workspace = true
Expand All @@ -13,9 +13,9 @@ edition.workspace = true
rust-version.workspace = true

[dependencies]
television-utils = { path = "../television-utils", version = "0.0.22" }
television-channels = { path = "../television-channels", version = "0.0.22" }
television-previewers = { path = "../television-previewers", version = "0.0.22" }
television-utils = { path = "../television-utils", version = "0.0.23" }
television-channels = { path = "../television-channels", version = "0.0.23" }
television-previewers = { path = "../television-previewers", version = "0.0.23" }

ratatui = { workspace = true }
serde = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/television-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "television-utils"
version = "0.0.22"
version = "0.0.23"
description.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down

0 comments on commit f45bd7c

Please sign in to comment.