Skip to content

Commit

Permalink
version bump to v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Dec 3, 2024
1 parent cdcadf8 commit 6886f98
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# sqlite3-ruby Changelog

## 2.4.0 / 2024-12-03

### Added

- `Database#load_extension` now accepts any object that responds to `#to_path`, in addition to String filesystem paths. [#586] @flavorjones
- `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


## 2.3.1 / 2024-11-25

### Dependencies
Expand Down
2 changes: 1 addition & 1 deletion lib/sqlite3/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module SQLite3
# (String) the version of the sqlite3 gem, e.g. "2.1.1"
VERSION = "2.4.0.dev"
VERSION = "2.4.0"
end

0 comments on commit 6886f98

Please sign in to comment.