Skip to content

Commit d9ea4ca

Browse files
authored
Merge pull request #319 from sparklemotion/flavorjones-release-v1.4.3
version bump to v1.4.3
2 parents bbb05d9 + cfecd89 commit d9ea4ca

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

CHANGELOG.rdoc

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
=== 1.4.2
1+
=== 1.4.3 (2022-05-25)
2+
3+
* Enhancements
4+
* Disable non-standard support for double-quoted string literals via the `:strict` option. [#317] (Thank you, @casperisfine!)
5+
* Column type names are now explicitly downcased on platforms where they may have been in shoutcaps. [#315] (Thank you, @petergoldstein!)
6+
* Support File or Pathname arguments to `Database.new`. [#283] (Thank you, @yb66!)
7+
* Support building on MSVC. [#285] (Thank you, @jmarrec!)
8+
9+
10+
=== 1.4.2 (2019-12-18)
211

312
* Travis: Drop unused setting "sudo: false"
413
* The taint mechanism will be deprecated in Ruby 2.7

lib/sqlite3/version.rb

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

3-
VERSION = '1.4.2'
3+
VERSION = '1.4.3'
44

55
module VersionProxy
66

77
MAJOR = 1
88
MINOR = 4
9-
TINY = 2
9+
TINY = 3
1010
BUILD = nil
1111

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

0 commit comments

Comments
 (0)