From 0eb0d18f674c808f523f67860aa0e04e750aee6e Mon Sep 17 00:00:00 2001 From: Gert-Jan Timmer Date: Tue, 29 May 2018 15:04:02 +0200 Subject: [PATCH 1/2] Removed Golang:1.8 Updated package for follow official Golang Release Policy. --- .travis.yml | 19 ------------------- README.md | 3 ++- 2 files changed, 2 insertions(+), 20 deletions(-) diff --git a/.travis.yml b/.travis.yml index ba8c891..dd0bbca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,30 +18,11 @@ env: - GOTAGS=sqlite_vtable go: - - 1.8.x - 1.9.x - 1.10.x matrix: include: - - os: linux - go: 1.8.x - env: GOTAGS= GOOS=windows GOARCH=amd64 - - os: linux - go: 1.8.x - env: GOTAGS=libsqlite3 GOOS=windows GOARCH=amd64 - - os: linux - go: 1.8.x - env: GOTAGS="sqlite_allow_uri_authority sqlite_app_armor sqlite_foreign_keys sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_secure_delete sqlite_see sqlite_stat4 sqlite_trace sqlite_userauth" GOOS=windows GOARCH=amd64 - - os: linux - go: 1.8.x - env: GOTAGS=sqlite_vacuum_full GOOS=windows GOARCH=amd64 - - os: linux - go: 1.8.x - env: GOTAGS=sqlite_vacuum_incr GOOS=windows GOARCH=amd64 - - os: linux - go: 1.8.x - env: GOTAGS=sqlite_vtable GOOS=windows GOARCH=amd64 - os: linux go: 1.9.x env: GOTAGS= GOOS=windows GOARCH=amd64 diff --git a/README.md b/README.md index 1f51f29..1e834d8 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,11 @@ go-sqlite3 sqlite3 driver conforming to the built-in database/sql interface Supported Golang version: -- 1.8.x - 1.9.x - 1.10.x +[This package follows the official Golang Release Policy.](https://golang.org/doc/devel/release.html#policy) + ### Overview - [Installation](#installation) From 9965ee19968581a5c05a54aa73d5cad221414d7f Mon Sep 17 00:00:00 2001 From: Gert-Jan Timmer Date: Tue, 29 May 2018 17:02:58 +0200 Subject: [PATCH 2/2] Removed Windows Cross-Compile [ci skip] --- .travis.yml | 40 ---------------------------------------- 1 file changed, 40 deletions(-) diff --git a/.travis.yml b/.travis.yml index dd0bbca..7a40372 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,46 +21,6 @@ go: - 1.9.x - 1.10.x -matrix: - include: - - os: linux - go: 1.9.x - env: GOTAGS= GOOS=windows GOARCH=amd64 - - os: linux - go: 1.9.x - env: GOTAGS=libsqlite3 GOOS=windows GOARCH=amd64 - - os: linux - go: 1.9.x - env: GOTAGS="sqlite_allow_uri_authority sqlite_app_armor sqlite_foreign_keys sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_secure_delete sqlite_see sqlite_stat4 sqlite_trace sqlite_userauth" GOOS=windows GOARCH=amd64 - - os: linux - go: 1.9.x - env: GOTAGS=sqlite_vacuum_full GOOS=windows GOARCH=amd64 - - os: linux - go: 1.9.x - env: GOTAGS=sqlite_vacuum_incr GOOS=windows GOARCH=amd64 - - os: linux - go: 1.9.x - env: GOTAGS=sqlite_vtable GOOS=windows GOARCH=amd64 - - os: linux - go: 1.10.x - env: GOTAGS= GOOS=windows GOARCH=amd64 - - os: linux - go: 1.10.x - env: GOTAGS=libsqlite3 GOOS=windows GOARCH=amd64 - - os: linux - go: 1.10.x - env: GOTAGS="sqlite_allow_uri_authority sqlite_app_armor sqlite_foreign_keys sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_secure_delete sqlite_see sqlite_stat4 sqlite_trace sqlite_userauth" GOOS=windows GOARCH=amd64 - - os: linux - go: 1.10.x - env: GOTAGS=sqlite_vacuum_full GOOS=windows GOARCH=amd64 - - os: linux - go: 1.10.x - env: GOTAGS=sqlite_vacuum_incr GOOS=windows GOARCH=amd64 - - os: linux - go: 1.10.x - env: GOTAGS=sqlite_vtable GOOS=windows GOARCH=amd64 - - before_install: - | if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then