@@ -24,7 +24,7 @@ brew install ipinfo-cli
24
24
OR to install the latest ` amd64 ` version without automatic updates:
25
25
26
26
``` 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
28
28
```
29
29
30
30
### Ubuntu PPA
@@ -43,14 +43,14 @@ _Note_: this is a one-time installation; updates are not automatic. Use the PPA
43
43
for automatic updates.
44
44
45
45
``` 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
47
47
```
48
48
49
49
OR
50
50
51
51
``` 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
54
54
```
55
55
56
56
### FreeBSD
@@ -71,7 +71,7 @@ makepkg -si
71
71
_ Note_ : run powershell as administrator before executing this command.
72
72
73
73
``` 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
75
75
```
76
76
77
77
### Scoop
@@ -83,15 +83,15 @@ scoop install ipinfo-cli
83
83
### Docker
84
84
85
85
``` bash
86
- docker run --rm -it ipinfo/ipinfo:3.0.0
86
+ docker run --rm -it ipinfo/ipinfo:3.0.1
87
87
```
88
88
89
89
To save the CLI's config, add ` -v "/path_to_config:/root/.config/ipinfo" ` . For
90
90
example, the following command saves the config to the ` ipinfo ` directory in
91
91
the current working directory.
92
92
93
93
``` 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
95
95
```
96
96
97
97
### Using ` go install `
@@ -142,12 +142,12 @@ After choosing a platform `PLAT` from above, run:
142
142
143
143
``` bash
144
144
# 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
146
146
# 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
148
148
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
151
151
```
152
152
153
153
### Using ` git `
0 commit comments