Skip to content

Commit b73fae5

Browse files
committed
Merge branch '1-3-stable'
* 1-3-stable: (25 commits) Backport: Add installation command for Debian/Ubuntu Doc: update repository links Backport: Correct gem license Update Manifest for new files Prepare for release Backport: Update Travis-CI information Update ChangeLog with backports Backport: Removed unused pointer Update ChangeLog with merge backports Backport: convert from test/unit to minitest Backport gem cross-compilation changes Backport: Reset before CHECKing the status Adjust CHANGELOG with merge commits Backport: Add MIT license reference to gemspec. Improve test for #65 to prove that the blob is passed into the function correctly Add test for calling function with blob argument (#65). Also, improve testing of blob storage in general, utilizing Blob type to correct column affinity. Resolve bug #65. Correctly convert blob values to ruby Now prepare for release Use newer rake-compiler Unset environment variables during cross compilation ... Conflicts: CHANGELOG.rdoc lib/sqlite3/version.rb test/test_statement.rb
2 parents 9256c71 + 2128c74 commit b73fae5

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.rdoc

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@
55
* Reduce warnings due unused pointers. Closes #89
66
* Add BSD-3 license reference to gemspec. Refs #99 and #106
77

8+
=== 1.3.8 / 2013-08-17
9+
10+
* Enhancements:
11+
* Windows: build against SQLite 3.7.17
12+
13+
* Bugfixes:
14+
* Reset exception message. Closes #80
15+
* Correctly convert BLOB values to Ruby. Closes #65
16+
* Add MIT license reference to gemspec. Closes #99
17+
* Remove unused pointer. Closes #89
18+
19+
* Internal:
20+
* Backport improvements in cross compilation for Windows
21+
* Use of Minitest for internal tests
22+
* Use Gemfile (generated by Hoe) to deal with dependencies
23+
* Cleanup Travis CI
24+
825
=== 1.3.7 / 2013-01-11
926

1027
* Bugfixes

Manifest.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
API_CHANGES.rdoc
22
CHANGELOG.rdoc
33
ChangeLog.cvs
4+
Gemfile
45
LICENSE
56
Manifest.txt
67
README.rdoc
@@ -45,6 +46,7 @@ test/test_integration_open_close.rb
4546
test/test_integration_pending.rb
4647
test/test_integration_resultset.rb
4748
test/test_integration_statement.rb
49+
test/test_result_set.rb
4850
test/test_sqlite3.rb
4951
test/test_statement.rb
5052
test/test_statement_execute.rb

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.3.7'
3+
VERSION = '1.3.8'
44

55
module VersionProxy
66

77
MAJOR = 1
88
MINOR = 3
9-
TINY = 7
9+
TINY = 8
1010
BUILD = nil
1111

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

0 commit comments

Comments
 (0)