Skip to content

Commit

Permalink
Release 1.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ipinfo committed Aug 8, 2024
1 parent 320c99c commit 99fffb2
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# 1.4.5
# 1.4.6

- [#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)
- [#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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ curl -Ls https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.5/deb.s
OR

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

Expand Down Expand Up @@ -91,9 +91,9 @@ 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.5/mmdbctl_1.4.4_${PLAT}.tar.gz
curl -LO https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.5/mmdbctl_1.4.6_${PLAT}.tar.gz
# OR
wget https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.5/mmdbctl_1.4.4_${PLAT}.tar.gz
wget https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.5/mmdbctl_1.4.6_${PLAT}.tar.gz
tar -xvf mmdbctl_1.4.5_${PLAT}.tar.gz
mv mmdbctl_1.4.5_${PLAT} /usr/local/bin/mmdbctl
```
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.5
VSN=1.4.6

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.5
Version: 1.4.6
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.5
VSN=1.4.6
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 scripts/prepare-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ mv CHANGELOG.md.new CHANGELOG.md
rm $CHANGES

# Update README with new version
cat README.md | sed "s/${LATEST_RELEASE_SEMVER}/${VSN}/" > README.md.new
cat README.md | sed "s/${LATEST_RELEASE_SEMVER}/${VSN}/g" > README.md.new
mv README.md.new README.md
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.5"
$VSN = "1.4.6"

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

0 comments on commit 99fffb2

Please sign in to comment.