Skip to content

Commit

Permalink
version bump to v1.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Oct 10, 2023
1 parent eb15000 commit 2611034
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# sqlite3-ruby Changelog

## next / unreleased
## 1.6.7 / 2023-10-10

### Dependencies

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

Upstream release notes:

> - Fix a couple of obscure UAF errors and an obscure memory leak.
> - Omit the use of the sprintf() function from the standard library in the [CLI](https://sqlite.org/cli.html), as this now generates warnings on some platforms.
> - Avoid conversion of a double into unsigned long long integer, as some platforms do not do such conversions correctly.

### Added

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.6"
VERSION = "1.6.7"

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

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

0 comments on commit 2611034

Please sign in to comment.