Skip to content

Commit 1815290

Browse files
committed
version bump to v1.6.0.rc1
1 parent cc22ff3 commit 1815290

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

CHANGELOG.md

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

3-
## next / unreleased
3+
## 1.6.0 / unreleased
44

55
### Ruby
66

@@ -14,6 +14,11 @@ This release ends native gem support for Ruby 2.6, for which [upstream support e
1414
* Vendored sqlite3 is updated to [v3.40.1](https://sqlite.org/releaselog/3_40_1.html).
1515

1616

17+
### Fixes
18+
19+
* `get_boolean_pragma` now returns the correct value. Previously, it always returned true. [#275] (Thank you, @Edouard-chin!)
20+
21+
1722
## 1.5.4 / 2022-11-18
1823

1924
### Dependencies

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ end
7171

7272
### Native Gems (recommended)
7373

74-
As of v1.5.0 of this library, native (precompiled) gems are available for Ruby 2.6, 2.7, 3.0, and 3.1 on all these platforms:
74+
In v1.5.0 and later, native (precompiled) gems are available for recent Ruby versions on these platforms:
7575

7676
- `aarch64-linux`
7777
- `arm-linux`

lib/sqlite3/version.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module SQLite3
22

3-
VERSION = "1.5.4"
3+
VERSION = "1.6.0.rc1"
44

55
module VersionProxy
66
MAJOR = 1
7-
MINOR = 5
8-
TINY = 4
9-
BUILD = nil
7+
MINOR = 6
8+
TINY = 0
9+
BUILD = "rc1"
1010

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

0 commit comments

Comments
 (0)