Skip to content

Commit

Permalink
release for support of i386
Browse files Browse the repository at this point in the history
ipinfo 1.1.4 -> 1.1.5
grepip 1.0.2 -> 1.0.3
  • Loading branch information
UmanShahzad committed May 20, 2021
1 parent cfbc604 commit 270c3ea
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,20 @@ 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-1.1.4/macos.sh | sh
curl -Ls https://github.com/ipinfo/cli/releases/download/ipinfo-1.1.5/macos.sh | sh
```

### Debian / Ubuntu (amd64)

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

OR

```bash
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-1.1.4/ipinfo_1.1.4.deb
sudo dpkg -i ipinfo_1.1.4.deb
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-1.1.5/ipinfo_1.1.5.deb
sudo dpkg -i ipinfo_1.1.5.deb
```

### Using `go get`
Expand Down Expand Up @@ -92,12 +92,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-1.1.4/ipinfo_1.1.4_${PLAT}.tar.gz
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-1.1.5/ipinfo_1.1.5_${PLAT}.tar.gz
# OR
wget https://github.com/ipinfo/cli/releases/download/ipinfo-1.1.4/ipinfo_1.1.4_${PLAT}.tar.gz
wget https://github.com/ipinfo/cli/releases/download/ipinfo-1.1.5/ipinfo_1.1.5_${PLAT}.tar.gz

tar -xvf ipinfo_1.1.4_${PLAT}.tar.gz
mv ipinfo_1.1.4_${PLAT} /usr/local/bin/ipinfo
tar -xvf ipinfo_1.1.5_${PLAT}.tar.gz
mv ipinfo_1.1.5_${PLAT} /usr/local/bin/ipinfo
```

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

VSN=1.0.2
VSN=1.0.3

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

VSN=1.0.2
VSN=1.0.3
PLAT=darwin_amd64

curl -LO https://github.com/ipinfo/cli/releases/download/grepip-${VSN}/grepip_${VSN}_${PLAT}.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion grepip/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 = "1.0.2"
var version = "1.0.3"

func printHelp() {
fmt.Printf(
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=1.1.4
VSN=1.1.5

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: 1.1.4
Version: 1.1.5
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=1.1.4
VSN=1.1.5
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 @@ -13,7 +13,7 @@ import (
)

var progBase = filepath.Base(os.Args[0])
var version = "1.1.4"
var version = "1.1.5"

var ii *ipinfo.Client

Expand Down

0 comments on commit 270c3ea

Please sign in to comment.