Skip to content

Commit

Permalink
chore(version): bump workspace crates and television
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpasmantier committed Nov 23, 2024
1 parent cf788c6 commit 87b720e
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
### 🐛 Bug Fixes

- Quote file names that contain spaces when printing them to stdout (#51)
- *(entry)* Preserve raw input

### 🚜 Refactor

Expand All @@ -15,11 +16,10 @@ All notable changes to this project will be documented in this file.
### 📚 Documentation

- Terminal emulators compatibility and good first issues (#56)
- *(contributing)* Add setup step

### 🎨 Styling

- *(git)* Enforce conventional commits on git push with a hook
- *(git)* Enforce conventional commits on git push with a hook (#61)

### ⚙️ Miscellaneous Tasks

Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "television"
version = "0.5.1"
version = "0.5.2"
edition = "2021"
description = "The revolution will be televised."
license = "MIT"
Expand Down Expand Up @@ -54,11 +54,11 @@ name = "tv"

[dependencies]
# workspace dependencies
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" }
television-fuzzy = { path = "crates/television-fuzzy", version = "0.0.6" }
television-derive = { path = "crates/television-derive", version = "0.0.6" }
television-channels = { path = "crates/television-channels", version = "0.0.6" }
television-previewers = { path = "crates/television-previewers", version = "0.0.6" }
television-utils = { path = "crates/television-utils", version = "0.0.6" }

# external dependencies
better-panic = "0.3.0"
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.5"
version = "0.0.6"
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.5" }
television-utils = { path = "../television-utils", version = "0.0.5" }
television-derive = { path = "../television-derive", version = "0.0.5" }
television-fuzzy = { path = "../television-fuzzy", version = "0.0.6" }
television-utils = { path = "../television-utils", version = "0.0.6" }
television-derive = { path = "../television-derive", version = "0.0.6" }
devicons = "0.6.11"
tracing = "0.1.40"
eyre = "0.6.12"
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.5"
version = "0.0.6"
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.5"
version = "0.0.6"
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.5"
version = "0.0.6"
description.workspace = true
authors.workspace = true
repository.workspace = true
Expand All @@ -14,8 +14,8 @@ rust-version.workspace = true

[dependencies]
syntect = "5.2.0"
television-channels = { path = "../television-channels", version = "0.0.5" }
television-utils = { path = "../television-utils", version = "0.0.5" }
television-channels = { path = "../television-channels", version = "0.0.6" }
television-utils = { path = "../television-utils", version = "0.0.6" }
tracing = "0.1.40"
parking_lot = "0.12.3"
tokio = "1.41.1"
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.5"
version = "0.0.6"
description.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down

0 comments on commit 87b720e

Please sign in to comment.