Skip to content

Commit

Permalink
vsn bump ipinfo from 2.6.0 to 2.6.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
UmanShahzad committed Nov 23, 2021
1 parent e4991e8 commit a43612c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ brew install ipinfo-cli
OR to install the latest `amd64` version without automatic updates:

```bash
curl -Ls https://github.com/ipinfo/cli/releases/download/ipinfo-2.6.0/macos.sh | sh
curl -Ls https://github.com/ipinfo/cli/releases/download/ipinfo-2.6.1/macos.sh | sh
```

### Debian / Ubuntu (amd64)

```bash
curl -Ls https://github.com/ipinfo/cli/releases/download/ipinfo-2.6.0/deb.sh | sh
curl -Ls https://github.com/ipinfo/cli/releases/download/ipinfo-2.6.1/deb.sh | sh
```

### FreeBSD
Expand All @@ -42,8 +42,8 @@ cd /usr/ports/net/ipinfo-cli && make install clean
OR

```bash
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-2.6.0/ipinfo_2.6.0.deb
sudo dpkg -i ipinfo_2.6.0.deb
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-2.6.1/ipinfo_2.6.1.deb
sudo dpkg -i ipinfo_2.6.1.deb
```

### Using `go get`
Expand Down Expand Up @@ -94,12 +94,12 @@ After choosing a platform `PLAT` from above, run:

```bash
# for Windows, use ".zip" instead of ".tar.gz"
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-2.6.0/ipinfo_2.6.0_${PLAT}.tar.gz
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-2.6.1/ipinfo_2.6.1_${PLAT}.tar.gz
# OR
wget https://github.com/ipinfo/cli/releases/download/ipinfo-2.6.0/ipinfo_2.6.0_${PLAT}.tar.gz
wget https://github.com/ipinfo/cli/releases/download/ipinfo-2.6.1/ipinfo_2.6.1_${PLAT}.tar.gz

tar -xvf ipinfo_2.6.0_${PLAT}.tar.gz
mv ipinfo_2.6.0_${PLAT} /usr/local/bin/ipinfo
tar -xvf ipinfo_2.6.1_${PLAT}.tar.gz
mv ipinfo_2.6.1_${PLAT} /usr/local/bin/ipinfo
```

### Using `git`
Expand Down
2 changes: 1 addition & 1 deletion ipinfo/deb.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

VSN=2.6.0
VSN=2.6.1

curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-${VSN}/ipinfo_${VSN}.deb
sudo dpkg -i ipinfo_${VSN}.deb
Expand Down
2 changes: 1 addition & 1 deletion ipinfo/dist/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Source: ipinfo
Section: utils
Version: 2.6.0
Version: 2.6.1
Priority: optional
Maintainer: IPinfo <[email protected]>
Vcs-Git: https://github.com/ipinfo/cli
Expand Down
2 changes: 1 addition & 1 deletion ipinfo/macos.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

VSN=2.6.0
VSN=2.6.1
PLAT=darwin_amd64

curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-${VSN}/ipinfo_${VSN}_${PLAT}.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion ipinfo/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

var progBase = filepath.Base(os.Args[0])
var version = "2.6.0"
var version = "2.6.1"

// global flags.
var fHelp bool
Expand Down

0 comments on commit a43612c

Please sign in to comment.