tiny_tds 1.0.1-x64-mingw32 → 1.0.2-x64-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: a2d73f9c604671acac2c5cc141e19d9fe804d207
4
- data.tar.gz: f871fccf39b237842edd74a5d72200bd1ec3709c
3
+ metadata.gz: 3520f99173bcf0da0886e7b6ce2195471b081b69
4
+ data.tar.gz: f21f5a4aaf490f9f35d4bd8a230ddf2f79ae59cd
5
5
  SHA512:
6
- metadata.gz: e4273d13b7befa05689b98e489026458a882d141104add355f38ffcf50a76e3a8f7b2590112b81f9ce9fb81deb429b69ea0f86c57fbaa08af1e7c4c37cbf9556
7
- data.tar.gz: 11229450c4ac867d49ad2c16664d1fc5fa9df195ada99eb83299eb9b11ec075eb7952dfcddf69c2dd4ad94f7db85d87a105faf1883dc55f65034150d94fffe4b
6
+ metadata.gz: c8118ad8bd9eac5bea2b36d069c13adf5a0cbeb6caf8c6bbeacd4b32fcbb1642a1d6e5e2b3d15b90ea8b811aa4ef7323b13527dffb04fa46f30b60d5df929ccf
7
+ data.tar.gz: a55f93e86cec3b69f922b36e3387b428fdf1395bad2d4170c77dcdbf84fbf11b5f5b3fa8837c0d4412b728cf15e12e6762a9251e6eaf42ebec236422a558463f
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
 
@@ -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]
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: x64-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,12 +133,13 @@ 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
139
140
  - lib/tiny_tds/result.rb
140
141
  - lib/tiny_tds/version.rb
141
- - ports/patches/freetds/1.0rc3/0001-mingw_missing_inet_pton.diff
142
+ - ports/patches/freetds/1.0rc4/0001-mingw_missing_inet_pton.diff
142
143
  - ports/x86_64-w64-mingw32/bin/libeay32-1.0.2g-x86_64-w64-mingw32.dll
143
144
  - ports/x86_64-w64-mingw32/bin/libiconv-2.dll
144
145
  - ports/x86_64-w64-mingw32/bin/libsybdb-5.dll
@@ -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.