Skip to content

Commit 6886f98

Browse files
committed
version bump to v2.4.0
1 parent cdcadf8 commit 6886f98

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# sqlite3-ruby Changelog
22

3+
## 2.4.0 / 2024-12-03
4+
5+
### Added
6+
7+
- `Database#load_extension` now accepts any object that responds to `#to_path`, in addition to String filesystem paths. [#586] @flavorjones
8+
- `Database.new` now accepts an `extensions:` parameter, which is an array of SQLite extensions that will be loaded during initialization. The array may contain String filesystem paths and objects that respond to `#to_path`. [#586] @flavorjones
9+
10+
311
## 2.3.1 / 2024-11-25
412

513
### Dependencies

lib/sqlite3/version.rb

Lines changed: 1 addition & 1 deletion
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.4.0.dev"
3+
VERSION = "2.4.0"
44
end

0 commit comments

Comments
 (0)