diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..63b002f --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,35 @@ +name: CI + +on: + push: + pull_request: + branches: [master] + schedule: + - cron: '0 6 * * 1' # Every monday 6 AM + +jobs: + test: + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest] + crystal: [1.0.0, latest, nightly] + runs-on: ${{ matrix.os }} + steps: + - name: Install Crystal + uses: crystal-lang/install-crystal@v1 + with: + crystal: ${{ matrix.crystal }} + + - name: Download source + uses: actions/checkout@v2 + + - name: Install shards + run: shards install + + - name: Run specs + run: crystal spec + + - name: Check formatting + run: crystal tool format; git diff --exit-code + if: matrix.crystal == 'latest' && matrix.os == 'ubuntu-latest' diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index dfd532a..0000000 --- a/.travis.yml +++ /dev/null @@ -1,2 +0,0 @@ -language: crystal -sudo: false diff --git a/CHANGELOG.md b/CHANGELOG.md index 753f819..c0816f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.19.0 (2022-01-28) + +* Update to crystal-db ~> 0.11.0. ([#77](https://github.com/crystal-lang/crystal-sqlite3/pull/77)) +* Fix timestamps support to allow dealing with exact seconds values ([#68](https://github.com/crystal-lang/crystal-sqlite3/pull/68), thanks @yujiri8, @tenebrousedge) +* Migrate CI to GitHub Actions. ([#78](https://github.com/crystal-lang/crystal-sqlite3/pull/78)) + +This release requires Crystal 1.0.0 or later. + ## v0.18.0 (2021-01-26) * Add `REGEXP` support powered by Crystal's std-lib Regex. ([#62](https://github.com/crystal-lang/crystal-sqlite3/pull/62), thanks @yujiri8) diff --git a/shard.yml b/shard.yml index d368f44..82ccb5c 100644 --- a/shard.yml +++ b/shard.yml @@ -1,15 +1,15 @@ name: sqlite3 -version: 0.18.0 +version: 0.19.0 dependencies: db: github: crystal-lang/crystal-db - version: ~> 0.10.0 + version: ~> 0.11.0 authors: - Ary Borenszweig - Brian J. Cardiff -crystal: ">= 0.35.0, < 2.0.0" +crystal: ">= 1.0.0, < 2.0.0" license: MIT diff --git a/src/sqlite3/result_set.cr b/src/sqlite3/result_set.cr index 48416b6..209aab6 100644 --- a/src/sqlite3/result_set.cr +++ b/src/sqlite3/result_set.cr @@ -47,6 +47,10 @@ class SQLite3::ResultSet < DB::ResultSet value end + def next_column_index : Int32 + @column_index + end + def read(t : Int32.class) : Int32 read(Int64).to_i32 end diff --git a/src/sqlite3/version.cr b/src/sqlite3/version.cr index 8de7608..a72f1d2 100644 --- a/src/sqlite3/version.cr +++ b/src/sqlite3/version.cr @@ -1,3 +1,3 @@ module SQLite3 - VERSION = "0.18.0" + VERSION = "0.19.0" end