diff --git a/README.md b/README.md index 18d0c6d4..514a84a3 100644 --- a/README.md +++ b/README.md @@ -193,7 +193,7 @@ Currently these subcommands are separately shipped: | CLI | Version | | ---------- | ------- | -| grepip | [1.2.1](https://github.com/ipinfo/cli/releases/tag/grepip-1.2.1) | +| grepip | [1.2.2](https://github.com/ipinfo/cli/releases/tag/grepip-1.2.2) | | prips | [1.0.0](https://github.com/ipinfo/cli/releases/tag/prips-1.0.0) | | cidr2range | [1.2.0](https://github.com/ipinfo/cli/releases/tag/cidr2range-1.2.0) | | cidr2ip | [1.0.0](https://github.com/ipinfo/cli/releases/tag/cidr2ip-1.0.0) | diff --git a/grepip/deb.sh b/grepip/deb.sh index 59b8998a..9b7fb402 100755 --- a/grepip/deb.sh +++ b/grepip/deb.sh @@ -1,6 +1,6 @@ #!/bin/sh -VSN=1.2.1 +VSN=1.2.2 curl -LO https://github.com/ipinfo/cli/releases/download/grepip-${VSN}/grepip_${VSN}.deb sudo dpkg -i grepip_${VSN}.deb diff --git a/grepip/dist/DEBIAN/control b/grepip/dist/DEBIAN/control index ef1b1d50..8386e9a7 100644 --- a/grepip/dist/DEBIAN/control +++ b/grepip/dist/DEBIAN/control @@ -1,6 +1,6 @@ Source: grepip Section: utils -Version: 1.2.1 +Version: 1.2.2 Priority: optional Maintainer: IPinfo Vcs-Git: https://github.com/ipinfo/cli diff --git a/grepip/macos.sh b/grepip/macos.sh index f7982853..be8e69fb 100755 --- a/grepip/macos.sh +++ b/grepip/macos.sh @@ -1,6 +1,6 @@ #!/bin/sh -VSN=1.2.1 +VSN=1.2.2 PLAT=darwin_amd64 curl -LO https://github.com/ipinfo/cli/releases/download/grepip-${VSN}/grepip_${VSN}_${PLAT}.tar.gz diff --git a/grepip/main.go b/grepip/main.go index 649ef91e..e71e2a42 100644 --- a/grepip/main.go +++ b/grepip/main.go @@ -12,7 +12,7 @@ import ( ) var progBase = filepath.Base(os.Args[0]) -var version = "1.2.1" +var version = "1.2.2" func printHelp() { fmt.Printf( diff --git a/grepip/windows.ps1 b/grepip/windows.ps1 index 37c53df0..1df02f21 100644 --- a/grepip/windows.ps1 +++ b/grepip/windows.ps1 @@ -1,4 +1,4 @@ -$VSN = "1.2.1" +$VSN = "1.2.2" # build the filename for the Zip archive and exe file $FileName = "grepip_$($VSN)_windows_amd64"