Skip to content

Commit 33eb922

Browse files
committed
Release 1.4.7
1 parent dbaf552 commit 33eb922

6 files changed

Lines changed: 18 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 1.4.7
2+
3+
- [dbaf552](https://www.github.com/ipinfo/mmdbctl/commit/dbaf552) Upgrade to latest `ipinfo/cli` commit, fixing CSV values being written to stdout
4+
- [508bba1](https://www.github.com/ipinfo/mmdbctl/commit/508bba1) `read`: include IP in JSON output
5+
16
# 1.4.6
27

38
- [#39](https://github.com/ipinfo/mmdbctl/pull/39) Switch to "github.com/edsrzf/mmap-go" for cross-platform mmap implementation (to make Windows builds work again)

README.md

Lines changed: 9 additions & 9 deletions
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.6/macos.sh | sh
22+
curl -Ls https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.7/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.6/deb.sh | sh
28+
curl -Ls https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.7/deb.sh | sh
2929
```
3030

3131
OR
3232

3333
```bash
34-
curl -LO https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.6/mmdbctl_1.4.6.deb
35-
sudo dpkg -i mmdbctl_1.4.6.deb
34+
curl -LO https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.7/mmdbctl_1.4.7.deb
35+
sudo dpkg -i mmdbctl_1.4.7.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.6/windows.ps1 | iex
43+
iwr -useb https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.7/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.6/mmdbctl_1.4.6_${PLAT}.tar.gz
94+
curl -LO https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.7/mmdbctl_1.4.7_${PLAT}.tar.gz
9595
# OR
96-
wget https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.6/mmdbctl_1.4.6_${PLAT}.tar.gz
97-
tar -xvf mmdbctl_1.4.6_${PLAT}.tar.gz
98-
mv mmdbctl_1.4.6_${PLAT} /usr/local/bin/mmdbctl
96+
wget https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.7/mmdbctl_1.4.7_${PLAT}.tar.gz
97+
tar -xvf mmdbctl_1.4.7_${PLAT}.tar.gz
98+
mv mmdbctl_1.4.7_${PLAT} /usr/local/bin/mmdbctl
9999
```
100100

101101
### Using `git`

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.4.6
3+
VSN=1.4.7
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

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

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.4.6
3+
VSN=1.4.7
44
PLAT=darwin_amd64
55

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

windows.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$VSN = "1.4.6"
1+
$VSN = "1.4.7"
22

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

0 commit comments

Comments
 (0)