Skip to content

Commit

Permalink
Get ready for 6.5.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sharadraju committed May 22, 2024
1 parent ae97160 commit b88055d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions doc/src/api_manual/connection.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1179,8 +1179,8 @@ Connection Methods
- ``nullable``: Indicates whether ``NULL`` values are permitted for this column.
- ``precision``: Set only for ``oracledb.DB_TYPE_NUMBER``, ``oracledb.DB_TYPE_TIMESTAMP``, ``oracledb.DB_TYPE_TIMESTAMP_TZ``, and ``oracledb.DB_TYPE_TIMESTAMP_LTZ`` columns.
- ``scale``: Set only for ``oracledb.DB_TYPE_NUMBER`` columns.
- ``vectorDimensions``: The number of dimensions of the vector column. If the column is not a vector column or allows for any number of dimensions, then the value of this property is *undefined*.
- ``vectorFormat``: The storage format of each dimension value in the vector column. If the column is not a vector column or allows for any storage format, then the value of this property is *undefined*.
- ``vectorDimensions``: The number of dimensions of the VECTOR column. If the column is not a VECTOR column or allows for any number of dimensions, then the value of this property is *undefined*.
- ``vectorFormat``: The storage format of each dimension value in the VECTOR column. If the column is not a VECTOR column or allows for any storage format, then the value of this property is *undefined*.

.. versionchanged:: 6.5

Expand Down
6 changes: 3 additions & 3 deletions doc/src/api_manual/oracledb.rst
Original file line number Diff line number Diff line change
Expand Up @@ -892,13 +892,13 @@ Constants for the :ref:`vectorFormat <execmetadata>` attribute.
- Description
* - ``oracledb.VECTOR_FORMAT_FLOAT32``
- 2
- The storage format of each dimension value in the vector column is a 32-bit floating-point number.
- The storage format of each dimension value in the VECTOR column is a 32-bit floating-point number.
* - ``oracledb.VECTOR_FORMAT_FLOAT64``
- 3
- The storage format of each dimension value in the vector column is a 64-bit floating-point number.
- The storage format of each dimension value in the VECTOR column is a 64-bit floating-point number.
* - ``oracledb.VECTOR_FORMAT_INT8``
- 4
- The storage format of each dimension value in the vector column is an 8-bit signed integer.
- The storage format of each dimension value in the VECTOR column is an 8-bit signed integer.

.. _oracledbproperties:

Expand Down
2 changes: 1 addition & 1 deletion doc/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
#
# The short X.Y version.
version = '6.5'
release = '6.5.0'
release = '6.5.1'

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
Expand Down
4 changes: 2 additions & 2 deletions doc/src/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ node-oracledb Release Notes

For deprecated and desupported features, see :ref:`Deprecations and desupported features <deprecations>`.

node-oracledb `v6.5.1 <https://github.com/oracle/node-oracledb/compare/v6.5.0...v6.5.1>`__ (TBD)
-------------------------------------------------------------------------------------------------------
node-oracledb `v6.5.1 <https://github.com/oracle/node-oracledb/compare/v6.5.0...v6.5.1>`__ (23 May 2024)
---------------------------------------------------------------------------------------------------------

Common Changes
++++++++++++++
Expand Down

0 comments on commit b88055d

Please sign in to comment.