ducklake 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 535980c5eabd395203e0abc095d01b8ed502e12e4880347d06840a04f92cc98b
4
- data.tar.gz: c9c8aac81ae63bd8d870a330cbdd1f3188dde5ee815909aa114ca200530ff62a
3
+ metadata.gz: 3e7dbcb74f84966f6b543576826486fb9d7614c9944639a7d548022da51e6674
4
+ data.tar.gz: 8cfbbfcd3f00d148878ee0148c7250eba7b37c42767f9027bcbc40669cba4c62
5
5
  SHA512:
6
- metadata.gz: '09115886b370740f415fe59c321ca6df78c1a21c8c5e5a8be608444ba54394eb706f9e07381a10b4cfe81a7114383074e157708ed1ef79c7f08e3e042858669e'
7
- data.tar.gz: 2047f9acd798b0c8ce52215bef6420fde44602e6e360ccf54e5b020ac3b83ec8d3df72671b3894023ad07c523a5613f85717d16b55ee2e72a5ba0fdf73d19ed0
6
+ metadata.gz: 3e8fb82327521e35536223b3d9ea8e9060b62da0bcfed52de93fb07d4d686e19103af943f73aec126dd89e96c0e633bbd10978766c6dc11aec9801fc9db8636d
7
+ data.tar.gz: 5b335e2df7a50fb4e8dcc2e013013af72e19defca393a04af06ebc18845ad13092d4df33dba7fc70d6404ef2092b96637caec6689f89eb8812bc9ff6e645ea36
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.1.5 (2026-05-23)
2
+
3
+ - Fixed deprecation warning with `duckdb` gem
4
+
1
5
  ## 0.1.4 (2026-03-09)
2
6
 
3
7
  - Added support for DuckDB 1.5
data/README.md CHANGED
@@ -13,8 +13,6 @@ DuckLake::Client.new(
13
13
 
14
14
  [Learn more](https://duckdb.org/2025/05/27/ducklake.html)
15
15
 
16
- Note: DuckLake is [not considered production-ready](https://ducklake.select/faq#is-ducklake-production-ready) at the moment
17
-
18
16
  [![Build Status](https://github.com/ankane/ducklake-ruby/actions/workflows/build.yml/badge.svg)](https://github.com/ankane/ducklake-ruby/actions)
19
17
 
20
18
  ## Installation
@@ -84,7 +84,12 @@ module DuckLake
84
84
  dbpath = File.join(@tmpdir, "memory.duckdb")
85
85
  DuckDB::Database.open(dbpath) { }
86
86
 
87
- @db = DuckDB::Database.open(dbpath, config)
87
+ @db =
88
+ if Gem::Version.new(DuckDB::VERSION) >= Gem::Version.new("1.5.2")
89
+ DuckDB::Database.open(dbpath, config: config)
90
+ else
91
+ DuckDB::Database.open(dbpath, config)
92
+ end
88
93
  else
89
94
  @db = DuckDB::Database.open
90
95
  end
@@ -1,3 +1,3 @@
1
1
  module DuckLake
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ducklake
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
@@ -53,7 +53,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  requirements: []
56
- rubygems_version: 4.0.3
56
+ rubygems_version: 4.0.10
57
57
  specification_version: 4
58
58
  summary: DuckLake for Ruby
59
59
  test_files: []