Skip to content

Commit 99fffb2

Browse files
committed
Release 1.4.6
1 parent 320c99c commit 99fffb2

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# 1.4.5
1+
# 1.4.6
22

3+
- [#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)
34
- [#37](https://github.com/ipinfo/mmdbctl/pull/37) `import`: JSON input processing supports `--fields` and `--fields-from-header` flags
45
- [#30](https://github.com/ipinfo/mmdbctl/pull/30) added type sizes info found within the data section)
56
- [#28](https://github.com/ipinfo/mmdbctl/pull/28) added low-level mmdb data to the metadata output

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ curl -Ls https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.5/deb.s
3131
OR
3232

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

@@ -91,9 +91,9 @@ 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.5/mmdbctl_1.4.4_${PLAT}.tar.gz
94+
curl -LO https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.5/mmdbctl_1.4.6_${PLAT}.tar.gz
9595
# OR
96-
wget https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.5/mmdbctl_1.4.4_${PLAT}.tar.gz
96+
wget https://github.com/ipinfo/mmdbctl/releases/download/mmdbctl-1.4.5/mmdbctl_1.4.6_${PLAT}.tar.gz
9797
tar -xvf mmdbctl_1.4.5_${PLAT}.tar.gz
9898
mv mmdbctl_1.4.5_${PLAT} /usr/local/bin/mmdbctl
9999
```

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.5
3+
VSN=1.4.6
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.5
3+
Version: 1.4.6
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.5
3+
VSN=1.4.6
44
PLAT=darwin_amd64
55

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

scripts/prepare-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ mv CHANGELOG.md.new CHANGELOG.md
5555
rm $CHANGES
5656

5757
# Update README with new version
58-
cat README.md | sed "s/${LATEST_RELEASE_SEMVER}/${VSN}/" > README.md.new
58+
cat README.md | sed "s/${LATEST_RELEASE_SEMVER}/${VSN}/g" > README.md.new
5959
mv README.md.new README.md

windows.ps1

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

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

0 commit comments

Comments
 (0)