Skip to content

Commit 14827cd

Browse files
committed
version bump to v1.6.6
1 parent c293e5c commit 14827cd

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.6 / 2023-09-12
4+
5+
### Dependencies
6+
7+
Vendored sqlite is updated to [v3.43.1](https://sqlite.org/releaselog/3_43_1.html).
8+
9+
Upstream release notes:
10+
11+
> - Fix a regression in the way that the [sum()](https://sqlite.org/lang_aggfunc.html#sumunc), [avg()](https://sqlite.org/lang_aggfunc.html#avg), and [total()](https://sqlite.org/lang_aggfunc.html#sumunc) aggregate functions handle infinities.
12+
> - Fix a bug in the [json_array_length()](https://sqlite.org/json1.html#jarraylen) function that occurs when the argument comes directly from [json_remove()](https://sqlite.org/json1.html#jrm).
13+
> - Fix the omit-unused-subquery-columns optimization (introduced in in version 3.42.0) so that it works correctly if the subquery is a compound where one arm is DISTINCT and the other is not.
14+
> - Other minor fixes.
15+
16+
317
## 1.6.5 / 2023-09-08
418

519
### Packaging

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.5"
3+
VERSION = "1.6.6"
44

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

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

0 commit comments

Comments
 (0)