Skip to content

Commit baff3d2

Browse files
committed
ipinfo 3.0.1
1 parent da019e4 commit baff3d2

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ brew install ipinfo-cli
2424
OR to install the latest `amd64` version without automatic updates:
2525

2626
```bash
27-
curl -Ls https://github.com/ipinfo/cli/releases/download/ipinfo-3.0.0/macos.sh | sh
27+
curl -Ls https://github.com/ipinfo/cli/releases/download/ipinfo-3.0.1/macos.sh | sh
2828
```
2929

3030
### Ubuntu PPA
@@ -43,14 +43,14 @@ _Note_: this is a one-time installation; updates are not automatic. Use the PPA
4343
for automatic updates.
4444

4545
```bash
46-
curl -Ls https://github.com/ipinfo/cli/releases/download/ipinfo-3.0.0/deb.sh | sh
46+
curl -Ls https://github.com/ipinfo/cli/releases/download/ipinfo-3.0.1/deb.sh | sh
4747
```
4848

4949
OR
5050

5151
```bash
52-
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-3.0.0/ipinfo_3.0.0.deb
53-
sudo dpkg -i ipinfo_3.0.0.deb
52+
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-3.0.1/ipinfo_3.0.1.deb
53+
sudo dpkg -i ipinfo_3.0.1.deb
5454
```
5555

5656
### FreeBSD
@@ -71,7 +71,7 @@ makepkg -si
7171
_Note_: run powershell as administrator before executing this command.
7272

7373
```bash
74-
iwr -useb https://github.com/ipinfo/cli/releases/download/ipinfo-3.0.0/windows.ps1 | iex
74+
iwr -useb https://github.com/ipinfo/cli/releases/download/ipinfo-3.0.1/windows.ps1 | iex
7575
```
7676

7777
### Scoop
@@ -83,15 +83,15 @@ scoop install ipinfo-cli
8383
### Docker
8484

8585
```bash
86-
docker run --rm -it ipinfo/ipinfo:3.0.0
86+
docker run --rm -it ipinfo/ipinfo:3.0.1
8787
```
8888

8989
To save the CLI's config, add `-v "/path_to_config:/root/.config/ipinfo"`. For
9090
example, the following command saves the config to the `ipinfo` directory in
9191
the current working directory.
9292

9393
```bash
94-
docker run --rm -it -v "$PWD/ipinfo:/root/.config/ipinfo" ipinfo/ipinfo:3.0.0
94+
docker run --rm -it -v "$PWD/ipinfo:/root/.config/ipinfo" ipinfo/ipinfo:3.0.1
9595
```
9696

9797
### Using `go install`
@@ -142,12 +142,12 @@ After choosing a platform `PLAT` from above, run:
142142

143143
```bash
144144
# for Windows, use ".zip" instead of ".tar.gz"
145-
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-3.0.0/ipinfo_3.0.0_${PLAT}.tar.gz
145+
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-3.0.1/ipinfo_3.0.1_${PLAT}.tar.gz
146146
# OR
147-
wget https://github.com/ipinfo/cli/releases/download/ipinfo-3.0.0/ipinfo_3.0.0_${PLAT}.tar.gz
147+
wget https://github.com/ipinfo/cli/releases/download/ipinfo-3.0.1/ipinfo_3.0.1_${PLAT}.tar.gz
148148

149-
tar -xvf ipinfo_3.0.0_${PLAT}.tar.gz
150-
mv ipinfo_3.0.0_${PLAT} /usr/local/bin/ipinfo
149+
tar -xvf ipinfo_3.0.1_${PLAT}.tar.gz
150+
mv ipinfo_3.0.1_${PLAT} /usr/local/bin/ipinfo
151151
```
152152

153153
### Using `git`

debian/changelog

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ipinfo (3.0.0) focal; urgency=medium
1+
ipinfo (3.0.1) focal; urgency=medium
22

3-
* 3.0.0 release.
3+
* 3.0.1 release.
44

55
-- umar <[email protected]> Mon, 22 Nov 2021 12:32:18 +0500

debian/files

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ipinfo_3.0.0_source.buildinfo utils optional
1+
ipinfo_3.0.1_source.buildinfo utils optional

ipinfo/deb.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
VSN=3.0.0
3+
VSN=3.0.1
44

55
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-${VSN}/ipinfo_${VSN}.deb
66
sudo dpkg -i ipinfo_${VSN}.deb

ipinfo/dist/DEBIAN/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Source: ipinfo
22
Section: utils
3-
Version: 3.0.0
3+
Version: 3.0.1
44
Priority: optional
55
Maintainer: IPinfo <[email protected]>
66
Vcs-Git: https://github.com/ipinfo/cli

ipinfo/macos.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
VSN=3.0.0
3+
VSN=3.0.1
44
PLAT=darwin_amd64
55

66
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-${VSN}/ipinfo_${VSN}_${PLAT}.tar.gz

ipinfo/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
var progBase = filepath.Base(os.Args[0])
14-
var version = "3.0.0"
14+
var version = "3.0.1"
1515

1616
// global flags.
1717
var fHelp bool

ipinfo/windows.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$VSN = "3.0.0"
1+
$VSN = "3.0.1"
22

33
# build the filename for the Zip archive and exe file
44
$FileName = "ipinfo_$($VSN)_windows_amd64"

0 commit comments

Comments
 (0)