do_mysql 0.10.4.rc2 → 0.10.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,20 @@
1
+ ## 0.10.4 2011-04-28
2
+
3
+ New features
4
+ * Add save point to transactions (all)
5
+ * JRuby 1.9 mode support (encodings etc.)
6
+
7
+ Bugfixes
8
+ * Fix bug when using nested transactions in concurrent scenarios (all)
9
+ * Use column aliases instead of names (jruby)
10
+ * DST calculation fixes (all)
11
+ * Attempt to add better support for ancient MySQL versions (do\_mysql)
12
+
13
+ Other
14
+ * Refactor to DRY up the adapters (all)
15
+ * Many style fixes
16
+ * Switch back to RSpec
17
+
1
18
  ## 0.10.3 2011-01-30
2
19
  * Reworked transactions
3
20
  * Fix a DST bug that could cause datetimes in the wrong timezone
@@ -1,5 +1,5 @@
1
1
  module DataObjects
2
2
  module Mysql
3
- VERSION = '0.10.4.rc2'
3
+ VERSION = '0.10.4'
4
4
  end
5
5
  end
@@ -56,7 +56,7 @@ begin
56
56
  ext.classpath = '../do_jdbc/lib/do_jdbc_internal.jar'
57
57
  ext.java_compiling do |gem|
58
58
  gem.add_dependency 'jdbc-mysql', '>=5.0.4'
59
- gem.add_dependency 'do_jdbc', '0.10.4.rc2'
59
+ gem.add_dependency 'do_jdbc', '0.10.4'
60
60
  end
61
61
  end
62
62
  rescue LoadError
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: do_mysql
3
3
  version: !ruby/object:Gem::Version
4
- hash: 977940495
5
- prerelease: true
4
+ hash: 63
5
+ prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 10
9
9
  - 4
10
- - rc2
11
- version: 0.10.4.rc2
10
+ version: 0.10.4
12
11
  platform: ruby
13
12
  authors:
14
13
  - Dirkjan Bussink
@@ -27,13 +26,12 @@ dependencies:
27
26
  requirements:
28
27
  - - "="
29
28
  - !ruby/object:Gem::Version
30
- hash: 977940495
29
+ hash: 63
31
30
  segments:
32
31
  - 0
33
32
  - 10
34
33
  - 4
35
- - rc2
36
- version: 0.10.4.rc2
34
+ version: 0.10.4
37
35
  type: :runtime
38
36
  version_requirements: *id001
39
37
  - !ruby/object:Gem::Dependency