From a7ae51f91799bca58495f92a93e9576f1b20b106 Mon Sep 17 00:00:00 2001 From: Nguyen Hoang Anh Date: Fri, 16 Sep 2022 09:49:50 +0700 Subject: [PATCH] upgrade go version from 1.15.7 to 1.15.15 when release --- .github/workflows/release.yml | 2 +- .travis.yml | 38 ----------------------------------- README.md | 4 ++-- main.go | 2 +- 4 files changed, 4 insertions(+), 42 deletions(-) delete mode 100644 .travis.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 931cc7a..10a40d9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: '1.15.7' + go-version: '1.15.15' - name: Preparation run: | go vet -x ./... diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index d6b494f..0000000 --- a/.travis.yml +++ /dev/null @@ -1,38 +0,0 @@ -language: go -go: - - 1.15.7 -env: "PATH=/home/travis/gopath/bin:$PATH" - -script: - - go vet -x ./... - - # Build linux/amd64 archive - - export GOOS="linux" - - export GOARCH="amd64" - - go build -v -tags "forceposix" -o build/linux-x64/cli-kintone - - zip linux-x64.zip build/linux-x64/cli-kintone - - # Build darwin/amd64 archive - - export GOOS="darwin" - - export GOARCH="amd64" - - go build -v -tags "forceposix" -o build/macos-x64/cli-kintone - - zip macos-x64.zip build/macos-x64/cli-kintone - - # Build windows/amd64 archive - - export GOOS="windows" - - export GOARCH="amd64" - - go build -v -tags "forceposix" -o build/windows-x64/cli-kintone.exe - - zip windows-x64.zip build/windows-x64/cli-kintone.exe - -deploy: - provider: releases - api_key: - secure: "LyVZrSUd+wjgN1Rxl64TLaVlAJDAFcJcA0L77M6thB8jLpXks4/b5XyMFDFBgXBI2jNJs1TXJll463kTHlA0s0bCBfOd5/jUj6EQw8srXxL5kDKCjX1f8cqc1V4UREddPLYtiAwSthMUrHqnd7aBnVzuhac1S+ttogrFL+bmiFk=" - file: - - "linux-x64.zip" - - "macos-x64.zip" - - "windows-x64.zip" - skip_cleanup: true - on: - tags: true - all_branches: true # https://github.com/travis-ci/travis-ci/issues/1675 diff --git a/README.md b/README.md index 55baf3d..406d051 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ cli-kintone is a command line utility for exporting and importing kintone App da ## Version -0.14.0 +0.14.1 ## Downloads @@ -149,7 +149,7 @@ printf "name,age\nJohn,37\nJane,29" | cli-kintone --import -a -d Requirement -- Go 1.15.7 +- Go 1.15.15 - Git and Mercurial to be able to clone the packages [Mac OS X/Linux](./docs/BuildForMacLinux.md) diff --git a/main.go b/main.go index 76ed2bc..71af69d 100644 --- a/main.go +++ b/main.go @@ -22,7 +22,7 @@ import ( const NAME = "cli-kintone" // VERSION of this package -const VERSION = "0.14.0" +const VERSION = "0.14.1" // IMPORT_ROW_LIMIT The maximum row will be import const IMPORT_ROW_LIMIT = 100