Skip to content

Commit

Permalink
version bump to v1.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Sep 9, 2023
1 parent c7d1f9b commit 77e902d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions lib/sqlite3/version.rb
Original file line number Diff line number Diff line change
@@ -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( "." )

Expand Down

0 comments on commit 77e902d

Please sign in to comment.