Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

* Use Kernel.BigDecimal vs BigDecimal.new. Fixes #409.
* Change `DBSETUTF16` abscence warning message. Fixes #410.
* Add Windows binary for Ruby-2.5. Fixes #408.

## 2.1.1

Expand Down
2 changes: 1 addition & 1 deletion tasks/native_gem.rake
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ task 'gem:windows' => ['ports:cross'] do
build = ['bundle']

# and finally build the native gem
build << 'rake cross native gem RUBY_CC_VERSION=2.4.0:2.3.0:2.2.2:2.1.6:2.0.0 CFLAGS="-Wall"'
build << 'rake cross native gem RUBY_CC_VERSION=2.5.0:2.4.0:2.3.0:2.2.2:2.1.6:2.0.0 CFLAGS="-Wall" MAKE="make -j`nproc`"'

RakeCompilerDock.sh build.join(' && ')
end
2 changes: 1 addition & 1 deletion tasks/ports.rake
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ namespace :ports do

# build the ports for all our cross compile hosts
GEM_PLATFORM_HOSTS.each do |gem_platform, host|
build << "rake ports:compile[#{host}]"
build << "rake ports:compile[#{host}] MAKE='make -j`nproc`'"
end

RakeCompilerDock.sh build.join(' && ')
Expand Down
2 changes: 1 addition & 1 deletion tiny_tds.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |s|
s.add_development_dependency 'mini_portile2', '~> 2.0'
s.add_development_dependency 'rake', '~> 10.4'
s.add_development_dependency 'rake-compiler', '~> 1.0'
s.add_development_dependency 'rake-compiler-dock', '~> 0.6.0'
s.add_development_dependency 'rake-compiler-dock', '~> 0.6.3'
s.add_development_dependency 'minitest', '~> 5.6'
s.add_development_dependency 'connection_pool', '~> 2.2'
end