sequel_pg 1.6.1 → 1.6.2

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 CHANGED
@@ -1,3 +1,7 @@
1
+ === 1.6.2 (2012-11-16)
2
+
3
+ * Make sequel_pg runnable on rubinius by fixing bad rb_global_variable call (dbussink)
4
+
1
5
  === 1.6.1 (2012-10-25)
2
6
 
3
7
  * Make PostgreSQL array parser handle string encodings correctly on ruby 1.9 (jeremyevans)
data/README.rdoc CHANGED
@@ -157,6 +157,8 @@ sequel_pg has been tested on the following:
157
157
  * ruby 1.8.7
158
158
  * ruby 1.9.2
159
159
  * ruby 1.9.3
160
+ * ruby 2.0.0preview1
161
+ * rbx 1.2.4
160
162
 
161
163
  If your platform, compiler version, or ruby version is not listed
162
164
  above, please test and send me a report including:
@@ -1009,7 +1009,7 @@ void Init_sequel_pg(void) {
1009
1009
  rb_global_variable(&spg_BigDecimal);
1010
1010
  rb_global_variable(&spg_Date);
1011
1011
  rb_global_variable(&spg_SQLTime);
1012
- rb_global_variable(&spg_Postgres);
1012
+ rb_global_variable(&spg_PGError);
1013
1013
  rb_global_variable(&spg_nan);
1014
1014
  rb_global_variable(&spg_pos_inf);
1015
1015
  rb_global_variable(&spg_neg_inf);
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sequel_pg
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.1
4
+ version: 1.6.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-25 00:00:00.000000000 Z
12
+ date: 2012-11-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: pg