Skip to content

Commit

Permalink
chore: bump to 0.8.0 (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpasmantier authored Dec 29, 2024
1 parent 8de82fe commit 1bc6f12
Show file tree
Hide file tree
Showing 12 changed files with 64 additions and 47 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,29 @@ All notable changes to this project will be documented in this file.
- *(input)* Bind ctrl-w to delete previous word (#150)
- *(ux)* Print current query to stdout on Enter if no entry is selected (#151)
- *(cli)* Allow passing --input <STRING> to prefill input prompt (#153)
- *(cable)* Make preview optional for cable channels (#155)
- *(cable)* Using builtin previewers inside cable channel prototypes (#156)

### 🚜 Refactor

- *(ui)* More compact general layout and make preview panel optional (#148)
- Update default configuration and simplify channel enum conversions (#157)
- *(cable)* Use tail instead of tac for zsh and bash command history channels (#161)

### 📚 Documentation

- *(readme)* Make channel names consistent everywhere (#138)
- Rearrange README, add a features section, and move more technical stuff to separate files (#159)
- Update readme (#160)
- Replace top image with a screenshot of the application (#163)
- Update README with more legible screenshot of the files channel (#164)

### ⚙️ Miscellaneous Tasks

- *(changelog)* Update changelog (auto) (#131)
- *(changelog)* Update changelog (auto) (#141)
- *(changelog)* Update changelog (auto) (#146)
- *(changelog)* Update changelog (auto) (#154)

## [0.7.1] - 2024-12-15

Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

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

50 changes: 28 additions & 22 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "television"
version = "0.7.1"
version = "0.8.0"
edition = "2021"
description = "The revolution will be televised."
license = "MIT"
Expand All @@ -10,18 +10,18 @@ repository = "https://github.com/alexpasmantier/television"
homepage = "https://github.com/alexpasmantier/television"
keywords = ["search", "fuzzy", "preview", "tui", "terminal"]
categories = [
"command-line-utilities",
"command-line-interface",
"concurrency",
"development-tools",
"command-line-utilities",
"command-line-interface",
"concurrency",
"development-tools",
]
include = [
"LICENSE",
"README.md",
"themes/**/*.toml",
"crates/television/**/*.rs",
"build.rs",
".config/config.toml",
"LICENSE",
"README.md",
"themes/**/*.toml",
"crates/television/**/*.rs",
"build.rs",
".config/config.toml",
]
rust-version = "1.81"

Expand All @@ -38,12 +38,18 @@ repository = "https://github.com/alexpasmantier/television"
homepage = "https://github.com/alexpasmantier/television"
keywords = ["search", "fuzzy", "preview", "tui", "terminal"]
categories = [
"command-line-utilities",
"command-line-interface",
"concurrency",
"development-tools",
"command-line-utilities",
"command-line-interface",
"concurrency",
"development-tools",
]
include = [
"LICENSE",
"README.md",
"crates/television/**/*.rs",
"build.rs",
"shell/**/*.sh",
]
include = ["LICENSE", "README.md", "crates/television/**/*.rs", "build.rs"]
rust-version = "1.81"
readme = "README.md"

Expand All @@ -56,12 +62,12 @@ name = "tv"
[dependencies]
# workspace dependencies

television-fuzzy = { path = "crates/television-fuzzy", version = "0.0.12" }
television-derive = { path = "crates/television-derive", version = "0.0.12" }
television-screen = { path = "crates/television-screen", version = "0.0.12" }
television-channels = { path = "crates/television-channels", version = "0.0.12" }
television-previewers = { path = "crates/television-previewers", version = "0.0.12" }
television-utils = { path = "crates/television-utils", version = "0.0.12" }
television-fuzzy = { path = "crates/television-fuzzy", version = "0.0.14" }
television-derive = { path = "crates/television-derive", version = "0.0.14" }
television-screen = { path = "crates/television-screen", version = "0.0.14" }
television-channels = { path = "crates/television-channels", version = "0.0.14" }
television-previewers = { path = "crates/television-previewers", version = "0.0.14" }
television-utils = { path = "crates/television-utils", version = "0.0.14" }

# external dependencies
better-panic = "0.3.0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ It is inspired by the neovim [telescope](https://github.com/nvim-telescope/teles
</summary>

```bash
curl -LO https://github.com/alexpasmantier/television/releases/download/0.7.0/television_0.7.0-1_amd64.deb
sudo dpkg -i television_0.7.0-1_amd64.deb
curl -LO https://github.com/alexpasmantier/television/releases/download/0.8.0/television_0.8.0-1_amd64.deb
sudo dpkg -i television_0.8.0-1_amd64.deb
```

</details>
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.12"
version = "0.0.14"
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.12" }
television-utils = { path = "../television-utils", version = "0.0.12" }
television-derive = { path = "../television-derive", version = "0.0.12" }
television-fuzzy = { path = "../television-fuzzy", version = "0.0.14" }
television-utils = { path = "../television-utils", version = "0.0.14" }
television-derive = { path = "../television-derive", version = "0.0.14" }
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.12"
version = "0.0.14"
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.12"
version = "0.0.14"
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.12"
version = "0.0.14"
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.12" }
television-utils = { path = "../television-utils", version = "0.0.12" }
television-channels = { path = "../television-channels", version = "0.0.14" }
television-utils = { path = "../television-utils", version = "0.0.14" }
tracing = "0.1.40"
parking_lot = "0.12.3"
tokio = "1.41.1"
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.12"
version = "0.0.14"
description.workspace = true
authors.workspace = true
repository.workspace = true
Expand All @@ -15,8 +15,8 @@ rust-version.workspace = true
[dependencies]
ratatui = "0.29.0"
serde = "1.0.215"
television-utils = { path = "../television-utils", version = "0.0.12" }
television-channels = { path = "../television-channels", version = "0.0.12" }
television-previewers = { path = "../television-previewers", version = "0.0.12" }
television-utils = { path = "../television-utils", version = "0.0.14" }
television-channels = { path = "../television-channels", version = "0.0.14" }
television-previewers = { path = "../television-previewers", version = "0.0.14" }
color-eyre = "0.6.3"
syntect = "5.2.0"
6 changes: 4 additions & 2 deletions 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.12"
version = "0.0.14"
description.workspace = true
authors.workspace = true
repository.workspace = true
Expand All @@ -17,7 +17,9 @@ ignore = "0.4.23"
lazy_static = "1.5.0"
tracing = "0.1.40"
color-eyre = "0.6.3"
bat = { version = "0.24.0", default-features = false, features = ["regex-onig"] }
bat = { version = "0.24.0", default-features = false, features = [
"regex-onig",
] }
directories = "5.0.1"
syntect = "5.2.0"
gag = "1.0.0"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/television-utils/src/shell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pub enum Shell {
Cmd,
}

const COMPLETION_ZSH: &str = include_str!("../../../shell/completion.zsh");
const COMPLETION_ZSH: &str = include_str!("../shell/completion.zsh");

pub fn completion_script(shell: Shell) -> Result<&'static str> {
match shell {
Expand Down

0 comments on commit 1bc6f12

Please sign in to comment.