Skip to content

Commit

Permalink
Release 1.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ipinfo committed Aug 8, 2024
1 parent 46f0ad6 commit 4e48e9c
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 13 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 1.4.5

- [#37](https://github.com/ipinfo/mmdbctl/pull/37) `import`: JSON input processing supports `--fields` and `--fields-from-header` flags
- [#30](https://github.com/ipinfo/mmdbctl/pull/30) added type sizes info found within the data section)
- [#28](https://github.com/ipinfo/mmdbctl/pull/28) added low-level mmdb data to the metadata output
- [#26](https://github.com/ipinfo/mmdbctl/pull/26) Fix: Compatibility Issue with IP2Location DB using int for IP Range

# 1.4.4

- Revert back to `maxmind/mmdbwriter`
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,28 @@ The `mmdbctl` CLI is available for download via multiple mechanisms.
Install the latest `amd64` version:

```bash
curl -Ls https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.4/macos.sh | sh
curl -Ls https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.5/macos.sh | sh
```

### Debian / Ubuntu (amd64)

```bash
curl -Ls https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.4/deb.sh | sh
curl -Ls https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.5/deb.sh | sh
```

OR

```bash
curl -LO https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.4/mmdbctl_1.4.4.deb
sudo dpkg -i mmdbctl_1.4.4.deb
curl -LO https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.5/mmdbctl_1.4.4.deb
sudo dpkg -i mmdbctl_1.4.5.deb
```

### Windows Powershell

_Note_: run powershell as administrator before executing this command.

```bash
iwr -useb https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.4/windows.ps1 | iex
iwr -useb https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.5/windows.ps1 | iex
```

### Using `go install`
Expand Down Expand Up @@ -91,11 +91,11 @@ After choosing a platform `PLAT` from above, run:

```bash
# for Windows, use ".zip" instead of ".tar.gz"
curl -LO https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.4/mmdbctl_1.4.4_${PLAT}.tar.gz
curl -LO https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.5/mmdbctl_1.4.4_${PLAT}.tar.gz
# OR
wget https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.4/mmdbctl_1.4.4_${PLAT}.tar.gz
tar -xvf mmdbctl_1.4.4_${PLAT}.tar.gz
mv mmdbctl_1.4.4_${PLAT} /usr/local/bin/mmdbctl
wget https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.5/mmdbctl_1.4.4_${PLAT}.tar.gz
tar -xvf mmdbctl_1.4.5_${PLAT}.tar.gz
mv mmdbctl_1.4.5_${PLAT} /usr/local/bin/mmdbctl
```

### Using `git`
Expand Down
2 changes: 1 addition & 1 deletion deb.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

VSN=1.4.3
VSN=1.4.5

curl -LO https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-${VSN}/mmdbctl_${VSN}.deb
sudo dpkg -i mmdbctl_${VSN}.deb
Expand Down
2 changes: 1 addition & 1 deletion dist/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Source: mmdbctl
Section: utils
Version: 1.4.3
Version: 1.4.5
Priority: optional
Maintainer: IPinfo <[email protected]>
Vcs-Git: https://github.com/ipinfo/mmdbctl
Expand Down
2 changes: 1 addition & 1 deletion macos.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

VSN=1.4.3
VSN=1.4.5
PLAT=darwin_amd64

curl -LO https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-${VSN}/mmdbctl_${VSN}_${PLAT}.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion windows.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$VSN = "1.4.3"
$VSN = "1.4.5"

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

0 comments on commit 4e48e9c

Please sign in to comment.