Skip to content

Commit

Permalink
Add versionadded to a few new things.
Browse files Browse the repository at this point in the history
  • Loading branch information
vpetrovykh committed Feb 25, 2025
1 parent 2e259ca commit bd9dfee
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
4 changes: 4 additions & 0 deletions docs/clients/js/reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,8 @@ Client

.. js:method:: executeSQL(query: string, args?: unknown[]): Promise<void>

.. versionadded:: 6.0

Execute a SQL command.

:param query: SQL query text.
Expand All @@ -340,6 +342,8 @@ Client
.. js:method:: querySQL<T>(query: string, args?: unknown[]): Promise<T[]>

.. versionadded:: 6.0

Run a SQL query and return the results as an array.
This method **always** returns an array.

Expand Down
12 changes: 8 additions & 4 deletions docs/reference/admin/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,18 @@ Administrative commands for managing Gel:

Create, remove, or alter a branch.

* :ref:`administer statistics_update() <ref_admin_statistics_update>`

Update internal statistics about data.

* :ref:`administer vacuum() <ref_admin_vacuum>`

Reclaim storage space.

.. versionadded:: 6.0

Another administrative command was added in |Gel| 6 release:

* :ref:`administer statistics_update() <ref_admin_statistics_update>`

Update internal statistics about data.


.. toctree::
:maxdepth: 3
Expand Down
18 changes: 18 additions & 0 deletions docs/stdlib/math.rst
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,8 @@ Math
:index: trigonometry

.. versionadded:: 6.0

Returns the value of pi.

.. code-block:: edgeql-repl
Expand All @@ -218,6 +220,8 @@ Math
:index: trigonometry

.. versionadded:: 6.0

Returns the arc cosine of the input.

.. code-block:: edgeql-repl
Expand All @@ -237,6 +241,8 @@ Math
:index: trigonometry

.. versionadded:: 6.0

Returns the arc sine of the input.

.. code-block:: edgeql-repl
Expand All @@ -256,6 +262,8 @@ Math
:index: trigonometry

.. versionadded:: 6.0

Returns the arc tangent of the input.

.. code-block:: edgeql-repl
Expand All @@ -275,6 +283,8 @@ Math
:index: trigonometry

.. versionadded:: 6.0

Returns the arc tangent of ``y / x``.

Uses the signs of the arguments determine the correct quadrant.
Expand All @@ -298,6 +308,8 @@ Math
:index: trigonometry

.. versionadded:: 6.0

Returns the cosine of the input.

.. code-block:: edgeql-repl
Expand All @@ -319,6 +331,8 @@ Math
:index: trigonometry

.. versionadded:: 6.0

Returns the cotangent of the input.

.. code-block:: edgeql-repl
Expand All @@ -338,6 +352,8 @@ Math
:index: trigonometry

.. versionadded:: 6.0

Returns the sinine of the input.

.. code-block:: edgeql-repl
Expand All @@ -359,6 +375,8 @@ Math
:index: trigonometry

.. versionadded:: 6.0

Returns the tanangent of the input.

.. code-block:: edgeql-repl
Expand Down

0 comments on commit bd9dfee

Please sign in to comment.