Skip to content

Commit f0ee6d0

Browse files
committed
version updates.
ipinfo 2.0.2 -> 2.1.0. range2cidr 1.0.0 -> 1.1.0. cidr2range 1.0.0 -> 1.1.0.
1 parent 3c3cf33 commit f0ee6d0

File tree

12 files changed

+21
-21
lines changed

12 files changed

+21
-21
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,20 @@ 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.0.2/macos.sh | sh
27+
curl -Ls https://github.com/ipinfo/cli/releases/download/ipinfo-2.1.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.0.2/deb.sh | sh
33+
curl -Ls https://github.com/ipinfo/cli/releases/download/ipinfo-2.1.0/deb.sh | sh
3434
```
3535

3636
OR
3737

3838
```bash
39-
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-2.0.2/ipinfo_2.0.2.deb
40-
sudo dpkg -i ipinfo_2.0.2.deb
39+
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-2.1.0/ipinfo_2.1.0.deb
40+
sudo dpkg -i ipinfo_2.1.0.deb
4141
```
4242

4343
### Using `go get`
@@ -91,12 +91,12 @@ After choosing a platform `PLAT` from above, run:
9191

9292
```bash
9393
# for Windows, use ".zip" instead of ".tar.gz"
94-
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-2.0.2/ipinfo_2.0.2_${PLAT}.tar.gz
94+
curl -LO https://github.com/ipinfo/cli/releases/download/ipinfo-2.1.0/ipinfo_2.1.0_${PLAT}.tar.gz
9595
# OR
96-
wget https://github.com/ipinfo/cli/releases/download/ipinfo-2.0.2/ipinfo_2.0.2_${PLAT}.tar.gz
96+
wget https://github.com/ipinfo/cli/releases/download/ipinfo-2.1.0/ipinfo_2.1.0_${PLAT}.tar.gz
9797

98-
tar -xvf ipinfo_2.0.2_${PLAT}.tar.gz
99-
mv ipinfo_2.0.2_${PLAT} /usr/local/bin/ipinfo
98+
tar -xvf ipinfo_2.1.0_${PLAT}.tar.gz
99+
mv ipinfo_2.1.0_${PLAT} /usr/local/bin/ipinfo
100100
```
101101

102102
### Using `git`
@@ -143,8 +143,8 @@ Currently these subcommands are separately shipped:
143143
| CLI | Version |
144144
| ---------- | ------- |
145145
| grepip | [1.1.0](https://github.com/ipinfo/cli/releases/tag/grepip-1.1.0) |
146-
| cidr2range | [1.0.0](https://github.com/ipinfo/cli/releases/tag/cidr2range-1.0.0) |
147-
| range2cidr | [1.0.0](https://github.com/ipinfo/cli/releases/tag/range2cidr-1.0.0) |
146+
| cidr2range | [1.1.0](https://github.com/ipinfo/cli/releases/tag/cidr2range-1.1.0) |
147+
| range2cidr | [1.1.0](https://github.com/ipinfo/cli/releases/tag/range2cidr-1.1.0) |
148148

149149
## Quick Start
150150

cidr2range/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=1.0.0
3+
VSN=1.1.0
44

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

cidr2range/dist/DEBIAN/control

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

cidr2range/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=1.0.0
3+
VSN=1.1.0
44
PLAT=darwin_amd64
55

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

cidr2range/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
)
1313

1414
var progBase = filepath.Base(os.Args[0])
15-
var version = "1.0.0"
15+
var version = "1.1.0"
1616

1717
func printHelp() {
1818
fmt.Printf(

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.0.2
3+
VSN=2.1.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.0.2
3+
Version: 2.1.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.0.2
3+
VSN=2.1.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
@@ -13,7 +13,7 @@ import (
1313
)
1414

1515
var progBase = filepath.Base(os.Args[0])
16-
var version = "2.0.2"
16+
var version = "2.1.0"
1717

1818
var ii *ipinfo.Client
1919

range2cidr/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=1.0.0
3+
VSN=1.1.0
44

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

0 commit comments

Comments
 (0)