diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 95fe9434..269ea76d 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go_version: ["1.10", "1.11", "latest"] + go_version: ["1.12", "1.13", "1.14", "latest"] db_versions: - mysql_version: 5 postgres_version: 9.6 diff --git a/HISTORY.md b/HISTORY.md index b6b81597..b67ec4d9 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,8 @@ +# v9.9.0 + +* [FIXED] SQLite do not add FOR UPDATE in SELECT. [#218](https://github.com/doug-martin/goqu/pull/218) - [@vlanse](https://github.com/vlanse) +* [ADDED] Support for INSERT ON CONFLICT in SQLite. [#218](https://github.com/doug-martin/goqu/pull/218) - [@vlanse](https://github.com/vlanse) + # v9.8.0 * [ADDED] Support for ANY and ALL operators. [#196](https://github.com/doug-martin/goqu/issues/196)