From 77e902d5d717cdcb092247accd53388f09cdea9d Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Sat, 9 Sep 2023 09:58:36 -0400 Subject: [PATCH] version bump to v1.6.5 --- CHANGELOG.md | 4 ++-- lib/sqlite3/version.rb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f64035af..c6b8e784 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ # sqlite3-ruby Changelog -## 1.6.5.rc1 / 2023-09-08 +## 1.6.5 / 2023-09-08 ### Packaging -* Allow setting compiler flags for the sqlite library via a `--with-sqlite-cflags` argument to `extconf.rb`. See `INSTALLATION.md` for more information. [#401, #402] (@flavorjones) +* Allow setting compiler flags for the sqlite library via a `--with-sqlite-cflags` argument to `extconf.rb`. See [`INSTALLATION.md`](https://github.com/sparklemotion/sqlite3-ruby/blob/master/INSTALLATION.md#controlling-compilation-flags-for-sqlite) for more information. [#401, #402] (@flavorjones) ## 1.6.4 / 2023-08-26 diff --git a/lib/sqlite3/version.rb b/lib/sqlite3/version.rb index f1237898..e8653ffc 100644 --- a/lib/sqlite3/version.rb +++ b/lib/sqlite3/version.rb @@ -1,12 +1,12 @@ module SQLite3 - VERSION = "1.6.5.rc1" + VERSION = "1.6.5" module VersionProxy MAJOR = 1 MINOR = 6 TINY = 5 - BUILD = "rc1" + BUILD = nil STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." )