Skip to content

Commit 015f601

Browse files
committed
version bump to v1.6.8
1 parent d4f0221 commit 015f601

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

CHANGELOG.md

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

3+
## 1.6.8 / 2023-11-01
4+
5+
### Dependencies
6+
7+
- Vendored sqlite is updated to [v3.44.0](https://sqlite.org/releaselog/3_44_0.html). @flavorjones
8+
- rake-compiler-dock updated to v1.3.1 for precompiled native gems. @flavorjones
9+
10+
11+
### Added
12+
13+
- `SQLite3::Database.open` now returns the block result. Previously this returned the Database object. [#415] @toy
14+
- Documentation improvement in `lib/sqlite3/database.rb`. [#421] @szTheory
15+
16+
317
## 1.6.7 / 2023-10-10
418

519
### Dependencies

lib/sqlite3/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module SQLite3
22

3-
VERSION = "1.6.7"
3+
VERSION = "1.6.8"
44

55
module VersionProxy
66
MAJOR = 1
77
MINOR = 6
8-
TINY = 7
8+
TINY = 8
99
BUILD = nil
1010

1111
STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." )

0 commit comments

Comments
 (0)