Skip to content

Commit

Permalink
Update version to 2.2.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
kubo committed Dec 30, 2020
1 parent 9b4d4a5 commit d7426d7
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 24 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2020-12-30 Kubo Takehiro <[email protected]>
* 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 <[email protected]>
* ext/oci8/oraconf.rb: Support --with-instant-client-dir along with --with-instant-client-lib/include.
(GH-223)
Expand Down
16 changes: 16 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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)
==================

Expand Down
2 changes: 1 addition & 1 deletion lib/oci8/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class OCI8
VERSION = "2.2.8"
VERSION = "2.2.9"
end
24 changes: 1 addition & 23 deletions mkpkg-win32.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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],
Expand All @@ -49,11 +37,6 @@
$ruby_base_dirs =
[
# RubyInstaller <URL:http://rubyinstaller.org>
'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',
Expand All @@ -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],
Expand All @@ -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

Expand Down

0 comments on commit d7426d7

Please sign in to comment.