Skip to content

Commit 2611034

Browse files
committed
version bump to v1.6.7
1 parent eb15000 commit 2611034

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# sqlite3-ruby Changelog
22

3-
## next / unreleased
3+
## 1.6.7 / 2023-10-10
4+
5+
### Dependencies
6+
7+
Vendored sqlite is updated to [v3.43.2](https://sqlite.org/releaselog/3_43_2.html).
8+
9+
Upstream release notes:
10+
11+
> - Fix a couple of obscure UAF errors and an obscure memory leak.
12+
> - 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.
13+
> - Avoid conversion of a double into unsigned long long integer, as some platforms do not do such conversions correctly.
14+
415

516
### Added
617

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

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

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

0 commit comments

Comments
 (0)