Skip to content

Commit 069d347

Browse files
committed
update
1 parent 09ed1bd commit 069d347

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,15 @@ go install github.com/codechenx/tv@latest
8989

9090
```bash
9191
# Download from releases page
92-
wget https://github.com/codechenx/tv/releases/download/v0.7.0/tv_0.7.0_linux_amd64.deb
92+
wget https://github.com/codechenx/tv/releases/download/v0.7.1/tv_0.7.1_linux_amd64.deb
9393
sudo dpkg -i tv_*.deb
9494
```
9595

9696
**CentOS/Fedora (.rpm)**
9797

9898
```bash
9999
# Download from releases page
100-
wget https://github.com/codechenx/tv/releases/download/v0.7.0/tv_0.7.0_linux_amd64.rpm
100+
wget https://github.com/codechenx/tv/releases/download/v0.7.1/tv_0.7.1_linux_amd64.rpm
101101
sudo rpm -i tv_*.rpm
102102
```
103103

snap/snapcraft.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: codechenx-tv
22

3-
version: '0.7.0' # just for humans, typically '1.2+git' or '1.3.2'
4-
summary: tv(Table Viewer) for delimited file in terminal
3+
version: '0.7.1' # just for humans, typically '1.2+git' or '1.3.2'
4+
summary: tv(Table Viewer) for delimited file in terminal.
55
description: |
6-
tv is a tool to view the delimited file in terminal.
6+
A fast, feature-rich CSV/TSV/delimited file viewer for the command line.
77
base: core24
88
grade: stable # must be 'stable' to release into candidate/stable channels
99
confinement: strict # use 'strict' once you have the right plugs and slots

tv.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ func main() {
1414
args.setDefault()
1515
RootCmd := &cobra.Command{
1616
Use: "tv {File_Name}",
17-
Version: "0.7.0",
17+
Version: "0.7.1",
1818
Short: "tv(Table Viewer) for delimited file in terminal",
1919
Run: func(cmd *cobra.Command, cmdargs []string) {
2020
if args.Sep == "\\t" {

0 commit comments

Comments
 (0)