diff --git a/ChangeLog b/ChangeLog index 3d16124b..64d523b9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2020-01-11 Kubo Takehiro + * NEWS: Add changes between 2.2.7 and 2.2.8. + * lib/oci8/version.rb: Update to 2.2.8. + 2020-01-11 Kubo Takehiro * ext/oci8/bind.c: Fix warning: comparison between signed and unsigned integer expressions diff --git a/NEWS b/NEWS index 3c07618e..bf5243b9 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,30 @@ # @markup markdown +2.2.8 (2020-01-11) +================== + +New features +------------ + +* Add support to specify include and lib directories of Oracle library on installation. (GH-210) + + The following three flags are added. + + * --with-instant-client-dir + * --with-instant-client-include + * --with-instant-client-lib + +Fixed issue +----------- + +- Suppress warnings compiling oci8lib.so (GH-212 and others) + +- Fix compilation and tests on Windows. + +- Fix spelling in install-instant-client.md (GH-217) + +- Use fiddler instead obsolete Win32API on Windows (GH-212) + 2.2.7 (2019-01-06) ================== diff --git a/lib/oci8/version.rb b/lib/oci8/version.rb index 15bddec9..1f204b35 100644 --- a/lib/oci8/version.rb +++ b/lib/oci8/version.rb @@ -1,3 +1,3 @@ class OCI8 - VERSION = "2.2.7" + VERSION = "2.2.8" end