tiny_tds 1.0.1-x86-mingw32 → 1.0.2-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8b634b342ec93f222f5b2a4f842e6c5efc5fe8af
4
- data.tar.gz: edfcf418a700fa9d6904497b7026c4b22ea37876
3
+ metadata.gz: c1449de36460ffb44eb4f5f8fb24af356ea06e75
4
+ data.tar.gz: bc8e2aebee2dbc47b921e2cd918dd4a2d9771b3a
5
5
  SHA512:
6
- metadata.gz: c04e70915622423fbb3ee7ff62c260b251d0b6ede598460040dce3dc1b4ab800614c6f44a8f7a6a7497fd207b22481e078909d0f2d3c3301cd919ee0231b733e
7
- data.tar.gz: 21d48966edb5be94cd4313939c4c819eaeb80ba02ff8318b2f4c1ecbc10ac240a978bd85c031c26e98583e0801d2250038c359d1aa3ab43b5c8084d4e1b25c79
6
+ metadata.gz: e7d3413434b8f7424279e05819f4fd7b2c4ebfd07305dc5358ca9af6658dbfa2de09b04b43dcd17b04ab8303edca1ce87e4b4bd9913722553c4034a3793c5319
7
+ data.tar.gz: 93649a2c0b7fc05ee65a9ee067ef643f67b68c11028387890519d35fe4a7ebd1bf266501bb0f9194fb5825ff1336597e620835ab56c2e99e8dbc6e1c59ae5d70
data/CHANGELOG CHANGED
@@ -1,3 +1,9 @@
1
+ * 1.0.2 *
2
+
3
+ * Cross compile w/2.3.0 using rake-compiler-dock ~> 0.5.1. Fixes #268 #270.
4
+ * Use FreeTDS 1.0rc4 for cross compile windows gems.
5
+
6
+
1
7
  * 1.0.1 *
2
8
 
3
9
  * Fix ruby exe's in non-platform gem.
data/Rakefile CHANGED
@@ -94,7 +94,7 @@ desc "Build the windows binary gems per rake-compiler-dock"
94
94
  task 'gem:windows' do
95
95
  require 'rake_compiler_dock'
96
96
  RakeCompilerDock.sh <<-EOT
97
- bundle && rake cross native gem RUBY_CC_VERSION=2.0.0:2.1.6:2.2.2 CFLAGS="-Wall"
97
+ bundle && rake cross native gem RUBY_CC_VERSION=2.0.0:2.1.6:2.2.2:2.3.0 CFLAGS="-Wall"
98
98
  EOT
99
99
  end
100
100
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.1
1
+ 1.0.2
data/appveyor.yml CHANGED
@@ -44,8 +44,8 @@ environment:
44
44
  secure: fYKSKV4v+36OFQp2nZdX4DfUpgmy5cm0wuR73cgdmEk=
45
45
  matrix:
46
46
  - ruby_version: "200"
47
- - ruby_version: "22"
48
- - ruby_version: "22-x64"
47
+ - ruby_version: "23"
48
+ - ruby_version: "23-x64"
49
49
  on_failure:
50
50
  - find -name compile.log | xargs cat
51
51
 
data/exe/defncopy.exe CHANGED
Binary file
data/exe/tsql.exe CHANGED
Binary file
@@ -5,11 +5,11 @@ ICONV_SOURCE_URI = "http://ftp.gnu.org/pub/gnu/libiconv/libiconv-#{ICONV_VERSION
5
5
  OPENSSL_VERSION = ENV['TINYTDS_OPENSSL_VERSION'] || '1.0.2g'
6
6
  OPENSSL_SOURCE_URI = "https://www.openssl.org/source/openssl-#{OPENSSL_VERSION}.tar.gz"
7
7
 
8
- FREETDS_VERSION = ENV['TINYTDS_FREETDS_VERSION'] || "1.0rc3"
8
+ FREETDS_VERSION = ENV['TINYTDS_FREETDS_VERSION'] || "1.0rc4"
9
9
  FREETDS_VERSION_INFO = Hash.new { |h,k|
10
10
  h[k] = {files: "ftp://ftp.freetds.org/pub/freetds/stable/freetds-#{k}.tar.bz2"}
11
11
  }
12
- FREETDS_VERSION_INFO['1.0rc3'] = {files: 'ftp://ftp.freetds.org/pub/freetds/stable/release_candidates/freetds-1.0rc3.tar.bz2'}
12
+ FREETDS_VERSION_INFO['1.0rc4'] = {files: 'ftp://ftp.freetds.org/pub/freetds/stable/release_candidates/freetds-1.0rc4.tar.bz2'}
13
13
  FREETDS_VERSION_INFO['0.99'] = {files: 'ftp://ftp.freetds.org/pub/freetds/current/freetds-dev.0.99.678.tar.gz'}
14
14
  FREETDS_VERSION_INFO['0.95'] = {files: 'ftp://ftp.freetds.org/pub/freetds/stable/freetds-0.95.92.tar.gz'}
15
15
  FREETDS_SOURCE_URI = FREETDS_VERSION_INFO[FREETDS_VERSION][:files]
Binary file
Binary file
Binary file
Binary file
data/tiny_tds.gemspec CHANGED
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
22
22
  s.add_runtime_dependency 'mini_portile2', '~> 2.0' # Keep this version in sync with the one in extconf.rb !
23
23
  s.add_development_dependency 'rake', '~> 10.4'
24
24
  s.add_development_dependency 'rake-compiler', '0.9.5'
25
- s.add_development_dependency 'rake-compiler-dock', '~> 0.4.3'
25
+ s.add_development_dependency 'rake-compiler-dock', '~> 0.5.1'
26
26
  s.add_development_dependency 'minitest', '~> 5.6'
27
27
  s.add_development_dependency 'connection_pool', '~> 2.2'
28
28
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tiny_tds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Ken Collins
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-04-28 00:00:00.000000000 Z
13
+ date: 2016-05-01 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: mini_portile2
@@ -60,14 +60,14 @@ dependencies:
60
60
  requirements:
61
61
  - - "~>"
62
62
  - !ruby/object:Gem::Version
63
- version: 0.4.3
63
+ version: 0.5.1
64
64
  type: :development
65
65
  prerelease: false
66
66
  version_requirements: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - "~>"
69
69
  - !ruby/object:Gem::Version
70
- version: 0.4.3
70
+ version: 0.5.1
71
71
  - !ruby/object:Gem::Dependency
72
72
  name: minitest
73
73
  requirement: !ruby/object:Gem::Requirement
@@ -133,6 +133,7 @@ files:
133
133
  - lib/tiny_tds/2.0/tiny_tds.so
134
134
  - lib/tiny_tds/2.1/tiny_tds.so
135
135
  - lib/tiny_tds/2.2/tiny_tds.so
136
+ - lib/tiny_tds/2.3/tiny_tds.so
136
137
  - lib/tiny_tds/bin.rb
137
138
  - lib/tiny_tds/client.rb
138
139
  - lib/tiny_tds/error.rb
@@ -142,7 +143,7 @@ files:
142
143
  - ports/i686-w64-mingw32/bin/libiconv-2.dll
143
144
  - ports/i686-w64-mingw32/bin/libsybdb-5.dll
144
145
  - ports/i686-w64-mingw32/bin/ssleay32-1.0.2g-i686-w64-mingw32.dll
145
- - ports/patches/freetds/1.0rc3/0001-mingw_missing_inet_pton.diff
146
+ - ports/patches/freetds/1.0rc4/0001-mingw_missing_inet_pton.diff
146
147
  - test/appveyor/dbsetup.ps1
147
148
  - test/appveyor/dbsetup.sql
148
149
  - test/benchmark/query.rb
@@ -182,7 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
182
183
  version: '0'
183
184
  requirements: []
184
185
  rubyforge_project:
185
- rubygems_version: 2.4.8
186
+ rubygems_version: 2.5.1
186
187
  signing_key:
187
188
  specification_version: 4
188
189
  summary: TinyTDS - A modern, simple and fast FreeTDS library for Ruby using DB-Library.