Skip to content

Commit 77e902d

Browse files
committed
version bump to v1.6.5
1 parent c7d1f9b commit 77e902d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# sqlite3-ruby Changelog
22

3-
## 1.6.5.rc1 / 2023-09-08
3+
## 1.6.5 / 2023-09-08
44

55
### Packaging
66

7-
* 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)
7+
* 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)
88

99

1010
## 1.6.4 / 2023-08-26

lib/sqlite3/version.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module SQLite3
22

3-
VERSION = "1.6.5.rc1"
3+
VERSION = "1.6.5"
44

55
module VersionProxy
66
MAJOR = 1
77
MINOR = 6
88
TINY = 5
9-
BUILD = "rc1"
9+
BUILD = nil
1010

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

0 commit comments

Comments
 (0)