Skip to content

Commit

Permalink
version bump to v1.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Sep 12, 2023
1 parent c293e5c commit 14827cd
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# sqlite3-ruby Changelog

## 1.6.6 / 2023-09-12

### Dependencies

Vendored sqlite is updated to [v3.43.1](https://sqlite.org/releaselog/3_43_1.html).

Upstream release notes:

> - 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.
> - 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).
> - 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.
> - Other minor fixes.

## 1.6.5 / 2023-09-08

### Packaging
Expand Down
4 changes: 2 additions & 2 deletions lib/sqlite3/version.rb
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module SQLite3

VERSION = "1.6.5"
VERSION = "1.6.6"

module VersionProxy
MAJOR = 1
MINOR = 6
TINY = 5
TINY = 6
BUILD = nil

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

0 comments on commit 14827cd

Please sign in to comment.