Skip to content

Commit

Permalink
version bump to v1.6.0.rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Jan 2, 2023
1 parent cc22ff3 commit 1815290
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# sqlite3-ruby Changelog

## next / unreleased
## 1.6.0 / unreleased

### Ruby

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


### Fixes

* `get_boolean_pragma` now returns the correct value. Previously, it always returned true. [#275] (Thank you, @Edouard-chin!)


## 1.5.4 / 2022-11-18

### Dependencies
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ end

### Native Gems (recommended)

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:
In v1.5.0 and later, native (precompiled) gems are available for recent Ruby versions on these platforms:

- `aarch64-linux`
- `arm-linux`
Expand Down
8 changes: 4 additions & 4 deletions lib/sqlite3/version.rb
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
module SQLite3

VERSION = "1.5.4"
VERSION = "1.6.0.rc1"

module VersionProxy
MAJOR = 1
MINOR = 5
TINY = 4
BUILD = nil
MINOR = 6
TINY = 0
BUILD = "rc1"

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

Expand Down

0 comments on commit 1815290

Please sign in to comment.