Skip to content

Commit

Permalink
version bump to v1.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Aug 26, 2023
1 parent 662d731 commit d28600e
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# sqlite3-ruby Changelog

## 1.6.4 / 2023-08-26

### Dependencies

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

Upstream release notes:

> SQLite Release 3.43.0 On 2023-08-24
> * Add support for Contentless-Delete FTS5 Indexes. This is a variety of FTS5 full-text search index that omits storing the content that is being indexed while also allowing records to be deleted.
> * Enhancements to the date and time functions:
> * Added new time shift modifiers of the form ±YYYY-MM-DD HH:MM:SS.SSS.
> * Added the timediff() SQL function.
> * Added the octet_length(X) SQL function.
> * Added the sqlite3_stmt_explain() API.
> * Query planner enhancements:
> * Generalize the LEFT JOIN strength reduction optimization so that it works for RIGHT and FULL JOINs as well. Rename it to OUTER JOIN strength reduction.
> * Enhance the theorem prover in the OUTER JOIN strength reduction optimization so that it returns fewer false-negatives.
> * Enhancements to the decimal extension:
> * New function decimal_pow2(N) returns the N-th power of 2 for integer N between -20000 and +20000.
> * New function decimal_exp(X) works like decimal(X) except that it returns the result in exponential notation - with a "e+NN" at the end.
> * If X is a floating-point value, then the decimal(X) function now does a full expansion of that value into its exact decimal equivalent.
> * Performance enhancements to JSON processing results in a 2x performance improvement for some kinds of processing on large JSON strings.
> * New makefile target "verify-source" checks to ensure that there are no unintentional changes in the source tree. (Works for canonical source code only - not for precompiled amalgamation tarballs.)
> * Added the SQLITE_USE_SEH compile-time option that enables Structured Exception Handling on Windows while working with the memory-mapped shm file that is part of WAL mode processing. This option is enabled by default when building on Windows using Makefile.msc.
> * The VFS for unix now assumes that the nanosleep() system call is available unless compiled with -DHAVE_NANOSLEEP=0.

## 1.6.3 / 2023-05-16

### Dependencies
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.3"
VERSION = "1.6.4"

module VersionProxy
MAJOR = 1
MINOR = 6
TINY = 3
TINY = 4
BUILD = nil

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

0 comments on commit d28600e

Please sign in to comment.