Skip to content

Commit 2724f7b

Browse files
committed
version bump to v2.6.0
1 parent f4e5405 commit 2724f7b

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
# sqlite3-ruby Changelog
22

3-
## next / unreleased
3+
## 2.6.0 / 2025-02-20
44

55
### Dependencies
66

77
- Vendored sqlite is updated to [v3.49.1](https://sqlite.org/releaselog/3_49_1.html) (from v3.47.2). #605 @flavorjones
88
- Updated to rake-compiler-dock v1.9.1. #610 @flavorjones
99

10+
### Important note for Window users
11+
12+
Loading extensions is not available on Windows when using the precompiled native gems or compiling the vendored sqlite library from source, starting with sqlite3-ruby v2.6.0.
13+
14+
Sqlite 3.48.0 and later have dramatically changed the "autoconf amalgamation" that is vendored in this gem. Specifically, the configuration is no longer actually autoconf, but some scripts that emulate autoconf's interface and behavior.
15+
16+
Although this _mostly_ "just worked", we're having a problem resolving the libraries necessary for loading extensions. As a result, starting with sqlite3-ruby v2.6.0, extensions cannot be loaded on Windows when using precompiled native gems or when compiling the vendored sqlite library.
17+
18+
If you are willing and able to help fix this, let us know at https://github.com/sparklemotion/sqlite3-ruby/issues/618.
19+
1020

1121
## 2.5.0 / 2024-12-25
1222

lib/sqlite3/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module SQLite3
22
# (String) the version of the sqlite3 gem, e.g. "2.1.1"
3-
VERSION = "2.5.0"
3+
VERSION = "2.6.0"
44
end

0 commit comments

Comments
 (0)