mirror of
https://github.com/alexpasmantier/television.git
synced 2025-06-07 03:55:23 +00:00
chore: bump version to 0.5.1
This commit is contained in:
parent
9dcb223dba
commit
d3564f2aca
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -2818,7 +2818,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television"
|
||||
version = "0.5.0"
|
||||
version = "0.5.1"
|
||||
dependencies = [
|
||||
"better-panic",
|
||||
"clap",
|
||||
@ -2849,7 +2849,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television-channels"
|
||||
version = "0.0.4"
|
||||
version = "0.0.5"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"color-eyre",
|
||||
@ -2868,7 +2868,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television-derive"
|
||||
version = "0.0.4"
|
||||
version = "0.0.5"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@ -2877,7 +2877,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television-fuzzy"
|
||||
version = "0.0.4"
|
||||
version = "0.0.5"
|
||||
dependencies = [
|
||||
"nucleo",
|
||||
"parking_lot",
|
||||
@ -2885,7 +2885,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television-previewers"
|
||||
version = "0.0.4"
|
||||
version = "0.0.5"
|
||||
dependencies = [
|
||||
"color-eyre",
|
||||
"devicons",
|
||||
@ -2901,7 +2901,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television-utils"
|
||||
version = "0.0.4"
|
||||
version = "0.0.5"
|
||||
dependencies = [
|
||||
"bat",
|
||||
"color-eyre",
|
||||
|
12
Cargo.toml
12
Cargo.toml
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television"
|
||||
version = "0.5.0"
|
||||
version = "0.5.1"
|
||||
edition = "2021"
|
||||
description = "The revolution will be televised."
|
||||
license = "MIT"
|
||||
@ -54,11 +54,11 @@ name = "tv"
|
||||
|
||||
[dependencies]
|
||||
# workspace dependencies
|
||||
television-fuzzy = { path = "crates/television-fuzzy", version = "0.0.4" }
|
||||
television-derive = { path = "crates/television-derive", version = "0.0.4" }
|
||||
television-channels = { path = "crates/television-channels", version = "0.0.4" }
|
||||
television-previewers = { path = "crates/television-previewers", version = "0.0.4" }
|
||||
television-utils = { path = "crates/television-utils", version = "0.0.4" }
|
||||
television-fuzzy = { path = "crates/television-fuzzy", version = "0.0.5" }
|
||||
television-derive = { path = "crates/television-derive", version = "0.0.5" }
|
||||
television-channels = { path = "crates/television-channels", version = "0.0.5" }
|
||||
television-previewers = { path = "crates/television-previewers", version = "0.0.5" }
|
||||
television-utils = { path = "crates/television-utils", version = "0.0.5" }
|
||||
|
||||
# external dependencies
|
||||
better-panic = "0.3.0"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television-channels"
|
||||
version = "0.0.4"
|
||||
version = "0.0.5"
|
||||
description.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
@ -13,9 +13,9 @@ edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
television-fuzzy = { path = "../television-fuzzy", version = "0.0.4" }
|
||||
television-utils = { path = "../television-utils", version = "0.0.4" }
|
||||
television-derive = { path = "../television-derive", version = "0.0.4" }
|
||||
television-fuzzy = { path = "../television-fuzzy", version = "0.0.5" }
|
||||
television-utils = { path = "../television-utils", version = "0.0.5" }
|
||||
television-derive = { path = "../television-derive", version = "0.0.5" }
|
||||
devicons = "0.6.11"
|
||||
tracing = "0.1.40"
|
||||
eyre = "0.6.12"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television-derive"
|
||||
version = "0.0.4"
|
||||
version = "0.0.5"
|
||||
description.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television-fuzzy"
|
||||
version = "0.0.4"
|
||||
version = "0.0.5"
|
||||
description.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television-previewers"
|
||||
version = "0.0.4"
|
||||
version = "0.0.5"
|
||||
description.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
@ -14,8 +14,8 @@ rust-version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
syntect = "5.2.0"
|
||||
television-channels = { path = "../television-channels", version = "0.0.4" }
|
||||
television-utils = { path = "../television-utils", version = "0.0.4" }
|
||||
television-channels = { path = "../television-channels", version = "0.0.5" }
|
||||
television-utils = { path = "../television-utils", version = "0.0.5" }
|
||||
tracing = "0.1.40"
|
||||
parking_lot = "0.12.3"
|
||||
tokio = "1.41.1"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television-utils"
|
||||
version = "0.0.4"
|
||||
version = "0.0.5"
|
||||
description.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
|
Loading…
x
Reference in New Issue
Block a user