do_mysql 0.10.4.rc2-java → 0.10.5-java

Sign up to get free protection for your applications and to get access to all the features.
data/ChangeLog.markdown CHANGED
@@ -1,3 +1,24 @@
1
+ ## 0.10.5 2011-05-03
2
+
3
+ No changes
4
+
5
+ ## 0.10.4 2011-04-28
6
+
7
+ New features
8
+ * Add save point to transactions (all)
9
+ * JRuby 1.9 mode support (encodings etc.)
10
+
11
+ Bugfixes
12
+ * Fix bug when using nested transactions in concurrent scenarios (all)
13
+ * Use column aliases instead of names (jruby)
14
+ * DST calculation fixes (all)
15
+ * Attempt to add better support for ancient MySQL versions (do\_mysql)
16
+
17
+ Other
18
+ * Refactor to DRY up the adapters (all)
19
+ * Many style fixes
20
+ * Switch back to RSpec
21
+
1
22
  ## 0.10.3 2011-01-30
2
23
  * Reworked transactions
3
24
  * Fix a DST bug that could cause datetimes in the wrong timezone
@@ -209,8 +209,8 @@ VALUE parse_time(const char *date) {
209
209
  }
210
210
 
211
211
  VALUE parse_date_time(const char *date) {
212
- static char const* const _fmt_datetime_tz_normal = "%4d-%2d-%2d %2d:%2d:%2d%3d:%2d";
213
- static char const* const _fmt_datetime_tz_subsec = "%4d-%2d-%2d %2d:%2d:%2d.%*d%3d:%2d";
212
+ static char const* const _fmt_datetime_tz_normal = "%4d-%2d-%2d%*c%2d:%2d:%2d%3d:%2d";
213
+ static char const* const _fmt_datetime_tz_subsec = "%4d-%2d-%2d%*c%2d:%2d:%2d.%*d%3d:%2d";
214
214
  int tokens_read;
215
215
  const char *fmt_datetime;
216
216
 
Binary file
@@ -1,5 +1,5 @@
1
1
  module DataObjects
2
2
  module Mysql
3
- VERSION = '0.10.4.rc2'
3
+ VERSION = '0.10.5'
4
4
  end
5
5
  end
data/tasks/compile.rake CHANGED
@@ -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.5'
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: 61
5
+ prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 10
9
- - 4
10
- - rc2
11
- version: 0.10.4.rc2
9
+ - 5
10
+ version: 0.10.5
12
11
  platform: java
13
12
  authors:
14
13
  - Dirkjan Bussink
@@ -25,13 +24,12 @@ dependencies:
25
24
  requirements:
26
25
  - - "="
27
26
  - !ruby/object:Gem::Version
28
- hash: 977940495
27
+ hash: 61
29
28
  segments:
30
29
  - 0
31
30
  - 10
32
- - 4
33
- - rc2
34
- version: 0.10.4.rc2
31
+ - 5
32
+ version: 0.10.5
35
33
  type: :runtime
36
34
  name: data_objects
37
35
  prerelease: false
@@ -88,13 +86,12 @@ dependencies:
88
86
  requirements:
89
87
  - - "="
90
88
  - !ruby/object:Gem::Version
91
- hash: 977940495
89
+ hash: 61
92
90
  segments:
93
91
  - 0
94
92
  - 10
95
- - 4
96
- - rc2
97
- version: 0.10.4.rc2
93
+ - 5
94
+ version: 0.10.5
98
95
  type: :runtime
99
96
  name: do_jdbc
100
97
  prerelease: false