Skip to content

Commit 82363ab

Browse files
quinnjclaude
andcommitted
Bump to v1.6.2, update CI, require Julia 1.9+
- Bump version to 1.6.2 - Update minimum Julia version to 1.9 - Update GitHub Actions: checkout v4, setup-julia v2, cache v4, codecov v4 - Add macOS ARM64 (M1/M2) to CI matrix - Update Windows CI to x64 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent fe31af9 commit 82363ab

2 files changed

Lines changed: 12 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
version:
18-
- '1.6'
18+
- '1.9'
1919
- '1' # automatically expands to the latest stable 1.x release of Julia
2020
- 'nightly'
2121
os:
@@ -25,14 +25,17 @@ jobs:
2525
include:
2626
- os: windows-latest
2727
version: '1'
28-
arch: x86
28+
arch: x64
29+
- os: macos-latest
30+
version: '1'
31+
arch: aarch64
2932
steps:
30-
- uses: actions/checkout@v2
31-
- uses: julia-actions/setup-julia@v1
33+
- uses: actions/checkout@v4
34+
- uses: julia-actions/setup-julia@v2
3235
with:
3336
version: ${{ matrix.version }}
3437
arch: ${{ matrix.arch }}
35-
- uses: actions/cache@v1
38+
- uses: actions/cache@v4
3639
env:
3740
cache-name: cache-artifacts
3841
with:
@@ -45,14 +48,14 @@ jobs:
4548
- uses: julia-actions/julia-buildpkg@v1
4649
- uses: julia-actions/julia-runtest@v1
4750
- uses: julia-actions/julia-processcoverage@v1
48-
- uses: codecov/codecov-action@v1
51+
- uses: codecov/codecov-action@v4
4952
with:
5053
file: lcov.info
5154
docs:
5255
name: Documentation
5356
runs-on: ubuntu-latest
5457
steps:
55-
- uses: actions/checkout@v2
58+
- uses: actions/checkout@v4
5659
- uses: julia-actions/julia-buildpkg@latest
5760
- uses: julia-actions/julia-docdeploy@latest
5861
env:

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SQLite"
22
uuid = "0aa819cd-b072-5ff4-a722-6bc24af294d9"
33
authors = ["Jacob Quinn <quinn.jacobd@gmail.com>", "JuliaData Contributors"]
4-
version = "1.6.1"
4+
version = "1.6.2"
55

66
[deps]
77
DBInterface = "a10d1c49-ce27-4219-8d33-6db1a4562965"
@@ -16,4 +16,4 @@ DBInterface = "2.5"
1616
SQLite_jll = "3"
1717
Tables = "1"
1818
WeakRefStrings = "0.4,0.5,0.6,1"
19-
julia = "1.6"
19+
julia = "1.9"

0 commit comments

Comments
 (0)