Skip to content

Commit 558a20b

Browse files
committed
mmdbctl 1.4.2
1 parent ed795a1 commit 558a20b

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -19,28 +19,28 @@ The `mmdbctl` CLI is available for download via multiple mechanisms.
1919
Install the latest `amd64` version:
2020

2121
```bash
22-
curl -Ls https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.1/macos.sh | sh
22+
curl -Ls https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.2/macos.sh | sh
2323
```
2424

2525
### Debian / Ubuntu (amd64)
2626

2727
```bash
28-
curl -Ls https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.1/deb.sh | sh
28+
curl -Ls https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.2/deb.sh | sh
2929
```
3030

3131
OR
3232

3333
```bash
34-
curl -LO https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.1/mmdbctl_1.4.1.deb
35-
sudo dpkg -i mmdbctl_1.4.1.deb
34+
curl -LO https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.2/mmdbctl_1.4.2.deb
35+
sudo dpkg -i mmdbctl_1.4.2.deb
3636
```
3737

3838
### Windows Powershell
3939

4040
_Note_: run powershell as administrator before executing this command.
4141

4242
```bash
43-
iwr -useb https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.1/windows.ps1 | iex
43+
iwr -useb https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.2/windows.ps1 | iex
4444
```
4545

4646
### Using `go install`
@@ -91,11 +91,11 @@ 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/mmdbctl/releases/download/mmdbctl-1.4.1/mmdbctl_1.4.1_${PLAT}.tar.gz
94+
curl -LO https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.2/mmdbctl_1.4.2_${PLAT}.tar.gz
9595
# OR
96-
wget https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.1/mmdbctl_1.4.1_${PLAT}.tar.gz
97-
tar -xvf mmdbctl_1.4.1_${PLAT}.tar.gz
98-
mv mmdbctl_1.4.1_${PLAT} /usr/local/bin/mmdbctl
96+
wget https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.2/mmdbctl_1.4.2_${PLAT}.tar.gz
97+
tar -xvf mmdbctl_1.4.2_${PLAT}.tar.gz
98+
mv mmdbctl_1.4.2_${PLAT} /usr/local/bin/mmdbctl
9999
```
100100

101101
### Using `git`

deb.sh

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

3-
VSN=1.4.1
3+
VSN=1.4.2
44

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

dist/DEBIAN/control

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

macos.sh

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

3-
VSN=1.4.1
3+
VSN=1.4.2
44
PLAT=darwin_amd64
55

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

windows.ps1

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

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

0 commit comments

Comments
 (0)