girepository: Fix API version ‘since’ numbers

Fixes commit 453dd4be9e.

Signed-off-by: Philip Withnall <pwithnall@gnome.org>
This commit is contained in:
Philip Withnall 2024-07-24 18:36:23 +02:00
parent 10177cf3ea
commit 0a60b57fd4
No known key found for this signature in database
GPG Key ID: DCDF5885B1F3ED73
2 changed files with 11 additions and 11 deletions

View File

@ -884,7 +884,7 @@ get_callable_info_for_index (GIBaseInfo *rinfo,
* *
* Returns: (transfer full) (nullable): a [class@GIRepository.CallableInfo] for the * Returns: (transfer full) (nullable): a [class@GIRepository.CallableInfo] for the
* async function or `NULL` if not defined. * async function or `NULL` if not defined.
* Since: 2.80 * Since: 2.84
*/ */
GICallableInfo * GICallableInfo *
gi_callable_info_get_async_function (GICallableInfo *info) gi_callable_info_get_async_function (GICallableInfo *info)
@ -925,7 +925,7 @@ gi_callable_info_get_async_function (GICallableInfo *info)
* *
* Returns: (transfer full) (nullable): a [class@GIRepository.CallableInfo] for the * Returns: (transfer full) (nullable): a [class@GIRepository.CallableInfo] for the
* sync function or `NULL` if not defined. * sync function or `NULL` if not defined.
* Since: 2.80 * Since: 2.84
*/ */
GICallableInfo * GICallableInfo *
gi_callable_info_get_sync_function (GICallableInfo *info) gi_callable_info_get_sync_function (GICallableInfo *info)
@ -966,7 +966,7 @@ gi_callable_info_get_sync_function (GICallableInfo *info)
* *
* Returns: (transfer full) (nullable): a [class@GIRepository.CallableInfo] for the * Returns: (transfer full) (nullable): a [class@GIRepository.CallableInfo] for the
* finish function or `NULL` if not defined. * finish function or `NULL` if not defined.
* Since: 2.80 * Since: 2.84
*/ */
GICallableInfo * GICallableInfo *
gi_callable_info_get_finish_function (GICallableInfo *info) gi_callable_info_get_finish_function (GICallableInfo *info)
@ -1007,7 +1007,7 @@ gi_callable_info_get_finish_function (GICallableInfo *info)
* [type@Gio.AsyncReadyCallback] parameter and user data. * [type@Gio.AsyncReadyCallback] parameter and user data.
* *
* Returns: true if the callable is async * Returns: true if the callable is async
* Since: 2.80 * Since: 2.84
*/ */
gboolean gboolean
gi_callable_info_is_async (GICallableInfo *callable_info) gi_callable_info_is_async (GICallableInfo *callable_info)

View File

@ -116,16 +116,16 @@ gboolean gi_callable_info_invoke (GICallableInfo *info
GI_AVAILABLE_IN_ALL GI_AVAILABLE_IN_ALL
GITransfer gi_callable_info_get_instance_ownership_transfer (GICallableInfo *info); GITransfer gi_callable_info_get_instance_ownership_transfer (GICallableInfo *info);
GI_AVAILABLE_IN_ALL GI_AVAILABLE_IN_2_84
GICallableInfo *gi_callable_info_get_async_function (GICallableInfo *info); GICallableInfo *gi_callable_info_get_async_function (GICallableInfo *info);
GI_AVAILABLE_IN_ALL GI_AVAILABLE_IN_2_84
GICallableInfo *gi_callable_info_get_sync_function (GICallableInfo *info); GICallableInfo *gi_callable_info_get_sync_function (GICallableInfo *info);
GI_AVAILABLE_IN_ALL GI_AVAILABLE_IN_2_84
GICallableInfo *gi_callable_info_get_finish_function (GICallableInfo *info); GICallableInfo *gi_callable_info_get_finish_function (GICallableInfo *info);
GI_AVAILABLE_IN_ALL GI_AVAILABLE_IN_2_84
gboolean gi_callable_info_is_async (GICallableInfo *info); gboolean gi_callable_info_is_async (GICallableInfo *info);
G_END_DECLS G_END_DECLS