Skip to content

Commit cc9acc5

Browse files
committed
Bump version to 0.6.2
1 parent 164d40d commit cc9acc5

File tree

4 files changed

+4
-13
lines changed

4 files changed

+4
-13
lines changed

.goreleaser.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,4 @@ nfpms:
6868
formats:
6969
- deb
7070
- rpm
71-
- apk
7271
bindir: /usr/bin

README.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -85,26 +85,18 @@ go install github.com/codechenx/tv@latest
8585

8686
```bash
8787
# Download from releases page
88-
wget https://github.com/codechenx/tv/releases/latest/download/tv_0.6.1_Linux_x86_64.deb
88+
wget https://github.com/codechenx/tv/releases/latest/download/tv_0.6.2_Linux_x86_64.deb
8989
sudo dpkg -i tv_*.deb
9090
```
9191

9292
**CentOS/Fedora (.rpm)**
9393

9494
```bash
9595
# Download from releases page
96-
wget https://github.com/codechenx/tv/releases/latest/download/tv_0.6.1_Linux_x86_64.rpm
96+
wget https://github.com/codechenx/tv/releases/latest/download/tv_0.6.2_Linux_x86_64.rpm
9797
sudo rpm -i tv_*.rpm
9898
```
9999

100-
**Alpine (apk)**
101-
102-
```bash
103-
# Download from releases page
104-
wget https://github.com/codechenx/tv/releases/latest/download/tv_0.6.1_Linux_x86_64.apk
105-
sudo apk add --allow-untrusted tv_*.apk
106-
```
107-
108100
### Manual Download
109101

110102
Download pre-built binaries from [releases](https://github.com/codechenx/tv/releases) for:

snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: codechenx-tv
22

3-
version: '0.6.1' # just for humans, typically '1.2+git' or '1.3.2'
3+
version: '0.6.2' # just for humans, typically '1.2+git' or '1.3.2'
44
summary: tv(Table Viewer) for delimited file in terminal
55
description: |
66
tv is a tool to view the delimited file in terminal.

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.6.1",
17+
Version: "0.6.2",
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)