sqlite3-ruby 1.3.0.beta.2 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/CHANGELOG.rdoc +33 -0
  2. data/lib/sqlite3/version.rb +2 -2
  3. 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
@@ -5,12 +5,12 @@ module SQLite3
5
5
  MAJOR = 1
6
6
  MINOR = 3
7
7
  TINY = 0
8
- BUILD = "beta.2"
8
+ BUILD = nil
9
9
 
10
10
  STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." )
11
11
  #:beta-tag:
12
12
 
13
- VERSION = '1.3.0.beta.2'
13
+ VERSION = '1.3.0'
14
14
  end
15
15
 
16
16
  end
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: true
4
+ prerelease: false
5
5
  segments:
6
6
  - 1
7
7
  - 3
8
8
  - 0
9
- - beta
10
- - 2
11
- version: 1.3.0.beta.2
9
+ version: 1.3.0
12
10
  platform: ruby
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-05-15 00:00:00 -03:00
19
+ date: 2010-06-06 00:00:00 -03:00
22
20
  default_executable:
23
21
  dependencies:
24
22
  - !ruby/object:Gem::Dependency