Skip to content

Commit db5c4c0

Browse files
committed
ipinfo vsn bump for range2ip subcmd.
1 parent 30cee54 commit db5c4c0

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ 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-2.2.0/macos.sh | sh
27+
curl -Ls https://github.com/ipinfo/cli/releases/download/ipinfo-2.3.0/macos.sh | sh
2828
```
2929

3030
### Debian / Ubuntu (amd64)
3131

3232
```bash
33-
curl -Ls https://github.com/ipinfo/cli/releases/download/ipinfo-2.2.0/deb.sh | sh
33+
curl -Ls https://github.com/ipinfo/cli/releases/download/ipinfo-2.3.0/deb.sh | sh
3434
```
3535

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

4444
```bash
45-
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-2.2.0/ipinfo_2.2.0.deb
46-
sudo dpkg -i ipinfo_2.2.0.deb
45+
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-2.3.0/ipinfo_2.3.0.deb
46+
sudo dpkg -i ipinfo_2.3.0.deb
4747
```
4848

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

9595
```bash
9696
# for Windows, use ".zip" instead of ".tar.gz"
97-
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-2.2.0/ipinfo_2.2.0_${PLAT}.tar.gz
97+
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-2.3.0/ipinfo_2.3.0_${PLAT}.tar.gz
9898
# OR
99-
wget https://github.com/ipinfo/cli/releases/download/ipinfo-2.2.0/ipinfo_2.2.0_${PLAT}.tar.gz
99+
wget https://github.com/ipinfo/cli/releases/download/ipinfo-2.3.0/ipinfo_2.3.0_${PLAT}.tar.gz
100100

101-
tar -xvf ipinfo_2.2.0_${PLAT}.tar.gz
102-
mv ipinfo_2.2.0_${PLAT} /usr/local/bin/ipinfo
101+
tar -xvf ipinfo_2.3.0_${PLAT}.tar.gz
102+
mv ipinfo_2.3.0_${PLAT} /usr/local/bin/ipinfo
103103
```
104104

105105
### Using `git`

ipinfo/deb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
VSN=2.2.0
3+
VSN=2.3.0
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Source: ipinfo
22
Section: utils
3-
Version: 2.2.0
3+
Version: 2.3.0
44
Priority: optional
55
Maintainer: IPinfo <support@ipinfo.io>
66
Vcs-Git: https://github.com/ipinfo/cli

ipinfo/macos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
VSN=2.2.0
3+
VSN=2.3.0
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

Lines changed: 1 addition & 1 deletion
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 = "2.2.0"
14+
var version = "2.3.0"
1515

1616
// global flags.
1717
var fHelp bool

0 commit comments

Comments
 (0)