Skip to content

Commit

Permalink
Merge pull request #578 from andyundso/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
andyundso authored Feb 4, 2025
2 parents cba28e3 + de42421 commit 9aba2bb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Reduce number of files shipped with precompiled Windows gem
* Provide precompiled gem for Linux (GNU + MUSL / 64-bit x86 + ARM)
* Fix wrappers for `tsql` and `defncopy` utility.
* Use libiconv v1.18 and freetds v1.4.26 for Windows and Linux builds

## 3.1.0

Expand Down
4 changes: 2 additions & 2 deletions ext/tiny_tds/extconsts.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
ICONV_VERSION = ENV["TINYTDS_ICONV_VERSION"] || "1.17"
ICONV_VERSION = ENV["TINYTDS_ICONV_VERSION"] || "1.18"
ICONV_SOURCE_URI = "http://ftp.gnu.org/pub/gnu/libiconv/libiconv-#{ICONV_VERSION}.tar.gz"

OPENSSL_VERSION = ENV["TINYTDS_OPENSSL_VERSION"] || "3.4.0"
OPENSSL_SOURCE_URI = "https://www.openssl.org/source/openssl-#{OPENSSL_VERSION}.tar.gz"

FREETDS_VERSION = ENV["TINYTDS_FREETDS_VERSION"] || "1.4.23"
FREETDS_VERSION = ENV["TINYTDS_FREETDS_VERSION"] || "1.4.26"
FREETDS_SOURCE_URI = "http://www.freetds.org/files/stable/freetds-#{FREETDS_VERSION}.tar.bz2"
2 changes: 1 addition & 1 deletion tasks/native_gem.rake
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CrossLibraries.each do |xlib|

RakeCompilerDock.sh <<-EOT, platform: platform
bundle install &&
rake native:#{platform} pkg/#{SPEC.full_name}-#{platform}.gem MAKEOPTS=-j`nproc` RUBY_CC_VERSION=3.4.1:3.3.5:3.2.0:3.1.0:3.0.0:2.7.0 MAKEFLAGS="V=1"
rake native:#{platform} pkg/#{SPEC.full_name}-#{platform}.gem MAKEOPTS=-j`nproc` RUBY_CC_VERSION=#{RakeCompilerDock.set_ruby_cc_version("~> 2.7", "~> 3.0")} MAKEFLAGS="V=1"
EOT
end

Expand Down
2 changes: 1 addition & 1 deletion tiny_tds.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |s|
s.add_development_dependency "mini_portile2", "~> 2.8.0"
s.add_development_dependency "rake", "~> 13.0.0"
s.add_development_dependency "rake-compiler", "~> 1.2"
s.add_development_dependency "rake-compiler-dock", "~> 1.7.0"
s.add_development_dependency "rake-compiler-dock", "~> 1.9.1"
s.add_development_dependency "minitest", "~> 5.25"
s.add_development_dependency "minitest-reporters", "~> 1.6.1"
s.add_development_dependency "connection_pool", "~> 2.2.0"
Expand Down

0 comments on commit 9aba2bb

Please sign in to comment.