Skip to content

Commit 3d122f0

Browse files
authored
Merge pull request #994 from suketa/duckdb_1.4.3
bump duckdb 1.4.3
2 parents b54d19e + 837bb76 commit 3d122f0

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.github/workflows/test_on_macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
ruby: ['3.2.9', '3.3.10', '3.4.8', '4.0.0', 'head']
19-
duckdb: ['1.4.2', '1.3.2']
19+
duckdb: ['1.4.3', '1.3.2']
2020

2121
steps:
2222
- uses: actions/checkout@v4

.github/workflows/test_on_ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
ruby: ['3.2.9', '3.3.10', '3.4.8', '4.0.0', 'head']
19-
duckdb: ['1.4.2', '1.3.2']
19+
duckdb: ['1.4.3', '1.3.2']
2020

2121
steps:
2222
- uses: actions/checkout@v4

.github/workflows/test_on_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
ruby: ['3.2.9', '3.3.10', '3.4.8', 'ucrt', 'mingw', 'mswin', 'head']
19-
duckdb: ['1.4.2', '1.3.2']
19+
duckdb: ['1.4.3', '1.3.2']
2020

2121
steps:
2222
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
All notable changes to this project will be documented in this file.
44

55
# Unreleased
6+
- bump duckdb to 1.4.3 on CI.
67

78
# 1.4.2.0 - 2025-12-27
89
- support Ruby 4.0.0, add Ruby 4.0.0 on CI.

test/duckdb_test/database_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def test_s_open_argument
3939

4040
def test_s_open_with_config
4141
library_version = Gem::Version.new(DuckDB::LIBRARY_VERSION)
42-
skip 'config test' if %w[1.4.0 1.4.1 1.4.2].include?(library_version.to_s)
42+
skip 'config test' if %w[1.4.0 1.4.1 1.4.2 1.4.3].include?(library_version.to_s)
4343

4444
config = DuckDB::Config.new
4545
config['default_order'] = 'DESC'

0 commit comments

Comments
 (0)