sqlite3-ruby 1.3.0.beta.2-x86-mingw32 → 1.3.0-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.rdoc +33 -0
- data/lib/sqlite3/1.8/sqlite3_native.so +0 -0
- data/lib/sqlite3/1.9/sqlite3_native.so +0 -0
- data/lib/sqlite3/version.rb +2 -2
- metadata +3 -5
data/CHANGELOG.rdoc
CHANGED
@@ -1,3 +1,36 @@
|
|
1
|
+
=== 1.3.0 / 2010-06-06
|
2
|
+
|
3
|
+
* Enhancements
|
4
|
+
* Complete rewrite of C-based adapter from SWIG to hand-crafted one [tenderlove]
|
5
|
+
See API_CHANGES document for details.
|
6
|
+
This closes: Bug #27300, Bug #27241, Patch #16020
|
7
|
+
* Improved UTF, Unicode, M17N, all that handling and proper BLOB handling [tenderlove, nurse]
|
8
|
+
* Added support for type translations [tenderlove]
|
9
|
+
|
10
|
+
@db.translator.add_translator('sometime') do |type, thing|
|
11
|
+
'output' # this will be returned as value for that column
|
12
|
+
end
|
13
|
+
|
14
|
+
* Experimental
|
15
|
+
* Added API to access and load extensions. [kashif]
|
16
|
+
These functions maps directly into SQLite3 own enable_load_extension()
|
17
|
+
and load_extension() C-API functions. See SQLite3::Database API documentation for details.
|
18
|
+
This closes: Patches #9178
|
19
|
+
|
20
|
+
* Bugfixes
|
21
|
+
* Corrected gem dependencies (runtime and development)
|
22
|
+
* Fixed threaded tests [Alexey Borzenkov]
|
23
|
+
* Removed GitHub gemspec
|
24
|
+
* Fixed "No definition for" warnings from RDoc
|
25
|
+
* Generate zip and tgz files for releases
|
26
|
+
* Added Luis Lavena as gem Author (maintainer)
|
27
|
+
* Prevent mkmf interfere with Mighty Snow Leopard
|
28
|
+
* Allow extension compilation search for common lib paths [kashif]
|
29
|
+
(lookup /usr/local, /opt/local and /usr)
|
30
|
+
* Corrected extension compilation under MSVC [romuloceccon]
|
31
|
+
* Define load_extension functionality based on availability [tenderlove]
|
32
|
+
* Deprecation notices for Database#query. Fixes RF #28192
|
33
|
+
|
1
34
|
=== 1.3.0.beta.2 / 2010-05-15
|
2
35
|
|
3
36
|
* Enhancements
|
Binary file
|
Binary file
|
data/lib/sqlite3/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sqlite3-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
4
|
+
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 3
|
8
8
|
- 0
|
9
|
-
|
10
|
-
- 2
|
11
|
-
version: 1.3.0.beta.2
|
9
|
+
version: 1.3.0
|
12
10
|
platform: x86-mingw32
|
13
11
|
authors:
|
14
12
|
- Jamis Buck
|
@@ -18,7 +16,7 @@ autorequire:
|
|
18
16
|
bindir: bin
|
19
17
|
cert_chain: []
|
20
18
|
|
21
|
-
date: 2010-
|
19
|
+
date: 2010-06-06 00:00:00 -03:00
|
22
20
|
default_executable:
|
23
21
|
dependencies:
|
24
22
|
- !ruby/object:Gem::Dependency
|