Skip to content

Commit

Permalink
Merge pull request #27 from duckdb/jray/upgrade-duckdb-to-v1.1.2
Browse files Browse the repository at this point in the history
upgrade duckdb to v1.1.2
  • Loading branch information
jraymakers authored Oct 20, 2024
2 parents fe31928 + 2dec26f commit 3e8588b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ node test.mjs
Expected output for above example:

```
v1.1.1
v1.1.2
[col 0] bool::BOOLEAN
[row 0] false
[row 1] true
Expand Down
2 changes: 1 addition & 1 deletion bindings/scripts/fetch_libduckdb_linux.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from fetch_libduckdb import fetch_libduckdb

zip_url = "https://github.com/duckdb/duckdb/releases/download/v1.1.1/libduckdb-linux-amd64.zip"
zip_url = "https://github.com/duckdb/duckdb/releases/download/v1.1.2/libduckdb-linux-amd64.zip"
output_dir = os.path.join(os.path.dirname(__file__), "..", "libduckdb")
files = [
"duckdb.h",
Expand Down
2 changes: 1 addition & 1 deletion bindings/scripts/fetch_libduckdb_mac.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from fetch_libduckdb import fetch_libduckdb

zip_url = "https://github.com/duckdb/duckdb/releases/download/v1.1.1/libduckdb-osx-universal.zip"
zip_url = "https://github.com/duckdb/duckdb/releases/download/v1.1.2/libduckdb-osx-universal.zip"
output_dir = os.path.join(os.path.dirname(__file__), "..", "libduckdb")
files = [
"duckdb.h",
Expand Down
2 changes: 1 addition & 1 deletion bindings/scripts/fetch_libduckdb_win.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from fetch_libduckdb import fetch_libduckdb

zip_url = "https://github.com/duckdb/duckdb/releases/download/v1.1.1/libduckdb-windows-amd64.zip"
zip_url = "https://github.com/duckdb/duckdb/releases/download/v1.1.2/libduckdb-windows-amd64.zip"
output_dir = os.path.join(os.path.dirname(__file__), "..", "libduckdb")
files = [
"duckdb.h",
Expand Down
2 changes: 1 addition & 1 deletion bindings/test/constants.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ suite('constants', () => {
expect(duckdb.sizeof_bool).toBe(1);
});
test('library_version', () => {
expect(duckdb.library_version()).toBe('v1.1.1');
expect(duckdb.library_version()).toBe('v1.1.2');
});
test('vector_size', () => {
expect(duckdb.vector_size()).toBe(2048);
Expand Down

0 comments on commit 3e8588b

Please sign in to comment.