From d7426d763dd0d47f0885ab814c54c62e7725360b Mon Sep 17 00:00:00 2001 From: Kubo Takehiro Date: Wed, 30 Dec 2020 16:25:21 +0900 Subject: [PATCH] Update version to 2.2.9. --- ChangeLog | 5 +++++ NEWS | 16 ++++++++++++++++ lib/oci8/version.rb | 2 +- mkpkg-win32.rb | 24 +----------------------- 4 files changed, 23 insertions(+), 24 deletions(-) diff --git a/ChangeLog b/ChangeLog index aa38e72a..a3f304bd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2020-12-30 Kubo Takehiro + * NEWS: Add changes between 2.2.8 and 2.2.9. + * lib/oci8/version.rb: Update to 2.2.9. + * mkpkg-win32.rb: remove unmaintained ruby versions from binary gems. + 2020-12-29 Kubo Takehiro * ext/oci8/oraconf.rb: Support --with-instant-client-dir along with --with-instant-client-lib/include. (GH-223) diff --git a/NEWS b/NEWS index bf5243b9..2ad93e27 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,21 @@ # @markup markdown +2.2.9 (2020-12-30) +================== + +- Support [TruffleRuby](https://github.com/oracle/truffleruby). (GH-225) + + (contributed by Brandon Fish) + +- Remove extension libraries for unmaintained ruby versions from binary gems. + +Fixed issue +----------- + +- Allow --with-instant-client-dir along with --with-instant-client-lib/include. (GH-223) + + (reported by Victor Nawothnig) + 2.2.8 (2020-01-11) ================== diff --git a/lib/oci8/version.rb b/lib/oci8/version.rb index 1f204b35..f0a6974a 100644 --- a/lib/oci8/version.rb +++ b/lib/oci8/version.rb @@ -1,3 +1,3 @@ class OCI8 - VERSION = "2.2.8" + VERSION = "2.2.9" end diff --git a/mkpkg-win32.rb b/mkpkg-win32.rb index a6d8429c..a6efa4e8 100644 --- a/mkpkg-win32.rb +++ b/mkpkg-win32.rb @@ -11,12 +11,6 @@ $ruby_base_dirs = [ - 'c:\ruby\ruby-1.9.1-p430-i386-mingw32', - 'c:\ruby\ruby-2.0.0-p0-i386-mingw32', - 'c:\ruby\ruby-2.1.3-i386-mingw32', - 'c:\ruby\ruby-2.2.1-i386-mingw32', - 'c:\ruby\ruby-2.3.0-i386-mingw32', - 'c:\ruby\rubyinstaller-2.4.1-1-x86', 'c:\ruby\rubyinstaller-2.5.0-1-x86', 'c:\ruby\rubyinstaller-2.6.0-1-x86', 'c:\ruby\rubyinstaller-2.7.0-1-x86', @@ -30,12 +24,6 @@ $build_ruby_dirs = [ - ['c:\ruby\ruby-1.9.1-p430-i386-mingw32', $devkit_tdm_setup], - ['c:\ruby\ruby-2.0.0-p0-i386-mingw32', $devkit_mingw64_setup], - ['c:\ruby\ruby-2.1.3-i386-mingw32', $devkit_mingw64_setup], - ['c:\ruby\ruby-2.2.1-i386-mingw32', $devkit_mingw64_setup], - ['c:\ruby\ruby-2.3.0-i386-mingw32', $devkit_mingw64_setup], - ['c:\ruby\rubyinstaller-2.4.1-1-x86', $ridk_setup, :disable_fortify_source], ['c:\ruby\rubyinstaller-2.5.0-1-x86', $ridk_setup, :disable_fortify_source], ['c:\ruby\rubyinstaller-2.6.0-1-x86', $ridk_setup], ['c:\ruby\rubyinstaller-2.7.0-1-x86', $ridk_setup], @@ -49,11 +37,6 @@ $ruby_base_dirs = [ # RubyInstaller - 'c:\ruby\ruby-2.0.0-p0-x64-mingw32', - 'c:\ruby\ruby-2.1.3-x64-mingw32', - 'c:\ruby\ruby-2.2.1-x64-mingw32', - 'c:\ruby\ruby-2.3.0-x64-mingw32', - 'c:\ruby\rubyinstaller-2.4.1-1-x64', 'c:\ruby\rubyinstaller-2.5.0-1-x64', 'c:\ruby\rubyinstaller-2.6.0-1-x64', 'c:\ruby\rubyinstaller-2.7.0-1-x64', @@ -65,11 +48,6 @@ $ridk_setup = 'ridk enable' $build_ruby_dirs = [ - ['c:\ruby\ruby-2.0.0-p0-x64-mingw32', $devkit_mingw64_setup], - ['c:\ruby\ruby-2.1.3-x64-mingw32', $devkit_mingw64_setup], - ['c:\ruby\ruby-2.2.1-x64-mingw32', $devkit_mingw64_setup], - ['c:\ruby\ruby-2.3.0-x64-mingw32', $devkit_mingw64_setup], - ['c:\ruby\rubyinstaller-2.4.1-1-x64', $ridk_setup, :disable_fortify_source], ['c:\ruby\rubyinstaller-2.5.0-1-x64', $ridk_setup, :disable_fortify_source], ['c:\ruby\rubyinstaller-2.6.0-1-x64', $ridk_setup], ['c:\ruby\rubyinstaller-2.7.0-1-x64', $ridk_setup], @@ -87,7 +65,7 @@ system('ruby mkpkg-win32.rb 32') end else - puts "#{ARGV[0]} (32|64)" + puts "#{ARGV[0]} (32|64|all)" exit 0 end