[evolution-data-server] Update devel-doc Since from 3.14 to 3.16



commit 5bd37293172203a0ae37496d52e3fdfb74d6eb00
Author: Milan Crha <mcrha redhat com>
Date:   Tue Feb 24 10:13:12 2015 +0100

    Update devel-doc Since from 3.14 to 3.16
    
    As the 3.14 version will be skipped, to get back to sync with
    the version of GNOME, then the right Since version is 3.16.

 addressbook/libebook-contacts/e-contact.c          |    4 +-
 addressbook/libebook/e-book-client.c               |    4 +-
 addressbook/libedata-book/e-book-sqlite.c          |    8 ++--
 calendar/libecal/e-cal-client.c                    |    4 +-
 calendar/libecal/e-cal-util.c                      |    4 +-
 camel/camel-certdb.c                               |    2 +-
 camel/camel-db.c                                   |    2 +-
 camel/camel-internet-address.c                     |    2 +-
 camel/camel-net-utils.c                            |    2 +-
 camel/camel-network-settings.c                     |    2 +-
 camel/camel-store.c                                |    2 +-
 camel/providers/imapx/camel-imapx-job.c            |    2 +-
 camel/providers/imapx/camel-imapx-mailbox.c        |    8 ++--
 .../imapx/camel-imapx-namespace-response.c         |    4 +-
 camel/providers/imapx/camel-imapx-search.c         |    2 +-
 camel/providers/imapx/camel-imapx-settings.c       |   12 +++---
 camel/providers/imapx/camel-imapx-store.c          |    6 +-
 libebackend/e-backend-factory.c                    |    4 +-
 libebackend/e-backend.c                            |   12 +++---
 libebackend/e-collection-backend.c                 |    2 +-
 libebackend/e-data-factory.c                       |    6 +-
 .../e-server-side-source-credentials-provider.c    |    2 +-
 .../e-server-side-source-credentials-provider.h    |    2 +-
 libebackend/e-soup-ssl-trust.c                     |    2 +-
 libebackend/e-source-registry-server.c             |    2 +-
 libebackend/e-subprocess-factory.c                 |   14 +++---
 libebackend/e-subprocess-factory.h                 |    2 +-
 libedataserver/e-categories.c                      |    8 ++--
 libedataserver/e-client.c                          |   16 ++++----
 libedataserver/e-data-server-util.c                |    8 ++--
 libedataserver/e-free-form-exp.c                   |    2 +-
 libedataserver/e-module.c                          |    2 +-
 libedataserver/e-source-authentication.c           |    6 +-
 .../e-source-credentials-provider-impl-password.h  |    2 +-
 .../e-source-credentials-provider-impl.c           |   14 +++---
 .../e-source-credentials-provider-impl.h           |    2 +-
 libedataserver/e-source-credentials-provider.c     |   34 ++++++++--------
 libedataserver/e-source-credentials-provider.h     |    2 +-
 libedataserver/e-source-enums.h                    |    6 +-
 libedataserver/e-source-mail-account.c             |    6 +-
 libedataserver/e-source-webdav.c                   |    2 +-
 libedataserver/e-source.c                          |   24 ++++++------
 libedataserver/e-source.h                          |    6 +-
 .../e-credentials-prompter-impl-password.c         |    2 +-
 .../e-credentials-prompter-impl-password.h         |    2 +-
 libedataserverui/e-credentials-prompter-impl.c     |   10 ++--
 libedataserverui/e-credentials-prompter-impl.h     |    2 +-
 libedataserverui/e-credentials-prompter.c          |   40 ++++++++++----------
 libedataserverui/e-credentials-prompter.h          |    4 +-
 libedataserverui/e-trust-prompt.c                  |    8 ++--
 50 files changed, 163 insertions(+), 163 deletions(-)
---
diff --git a/addressbook/libebook-contacts/e-contact.c b/addressbook/libebook-contacts/e-contact.c
index a1eec82..4817d12 100644
--- a/addressbook/libebook-contacts/e-contact.c
+++ b/addressbook/libebook-contacts/e-contact.c
@@ -1470,7 +1470,7 @@ e_contact_vcard_attribute (EContactField field_id)
  *
  * Returns: Whether the @field_id is of a string type.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_contact_field_is_string (EContactField field_id)
@@ -1821,7 +1821,7 @@ e_contact_get_attributes (EContact *contact,
  * Returns: (transfer full) (element-type EVCardAttribute): A #GList of pointers
  * to #EVCardAttribute, owned by the caller.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 GList *
 e_contact_get_attributes_set (EContact *contact,
diff --git a/addressbook/libebook/e-book-client.c b/addressbook/libebook/e-book-client.c
index 609b0a2..a037605 100644
--- a/addressbook/libebook/e-book-client.c
+++ b/addressbook/libebook/e-book-client.c
@@ -1333,7 +1333,7 @@ e_book_client_init (EBookClient *client)
  * Unlike with e_book_client_new(), there is no need to call
  * e_client_open_sync() after obtaining the #EBookClient.
  *
- * The @wait_for_connected_seconds argument had been added since 3.14,
+ * The @wait_for_connected_seconds argument had been added since 3.16,
  * to let the caller decide how long to wait for the backend to fully
  * connect to its (possibly remote) data store. This is required due
  * to a change in the authentication process, which is fully asynchronous
@@ -1517,7 +1517,7 @@ exit:
  *
  * Asynchronously creates a new #EBookClient for @source.
  *
- * The @wait_for_connected_seconds argument had been added since 3.14,
+ * The @wait_for_connected_seconds argument had been added since 3.16,
  * to let the caller decide how long to wait for the backend to fully
  * connect to its (possibly remote) data store. This is required due
  * to a change in the authentication process, which is fully asynchronous
diff --git a/addressbook/libedata-book/e-book-sqlite.c b/addressbook/libedata-book/e-book-sqlite.c
index 05f68c4..17f46ae 100644
--- a/addressbook/libedata-book/e-book-sqlite.c
+++ b/addressbook/libedata-book/e-book-sqlite.c
@@ -6809,7 +6809,7 @@ e_book_sqlite_ref_collator (EBookSqlite *ebsql)
  * Returns: (transfer-full): A reference to the #ESource to which @ebsql
  * is paired, or %NULL.
  *
- * Since: 3.14
+ * Since: 3.16
 */
 ESource *
 e_book_sqlite_ref_source (EBookSqlite *ebsql)
@@ -7170,7 +7170,7 @@ e_book_sqlite_get_contact (EBookSqlite *ebsql,
  *
  * Returns: %TRUE on success, otherwise %FALSE is returned and @error is set appropriately.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 ebsql_get_contact_unlocked (EBookSqlite *ebsql,
@@ -7289,7 +7289,7 @@ e_book_sqlite_get_vcard (EBookSqlite *ebsql,
  *
  * Returns: %TRUE on success, otherwise %FALSE is returned and @error is set appropriately.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 ebsql_get_vcard_unlocked (EBookSqlite *ebsql,
@@ -7426,7 +7426,7 @@ e_book_sqlite_get_contact_extra (EBookSqlite *ebsql,
  *
  * Returns: %TRUE on success, otherwise %FALSE is returned and @error is set appropriately.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 ebsql_get_contact_extra_unlocked (EBookSqlite *ebsql,
diff --git a/calendar/libecal/e-cal-client.c b/calendar/libecal/e-cal-client.c
index 2137c59..4eff237 100644
--- a/calendar/libecal/e-cal-client.c
+++ b/calendar/libecal/e-cal-client.c
@@ -1648,7 +1648,7 @@ e_cal_client_init (ECalClient *client)
  * Creates a new #ECalClient for @source and @source_type.  If an error
  * occurs, the function will set @error and return %FALSE.
  *
- * The @wait_for_connected_seconds argument had been added since 3.14,
+ * The @wait_for_connected_seconds argument had been added since 3.16,
  * to let the caller decide how long to wait for the backend to fully
  * connect to its (possibly remote) data store. This is required due
  * to a change in the authentication process, which is fully asynchronous
@@ -1842,7 +1842,7 @@ exit:
  *
  * Asynchronously creates a new #ECalClient for @source and @source_type.
  *
- * The @wait_for_connected_seconds argument had been added since 3.14,
+ * The @wait_for_connected_seconds argument had been added since 3.16,
  * to let the caller decide how long to wait for the backend to fully
  * connect to its (possibly remote) data store. This is required due
  * to a change in the authentication process, which is fully asynchronous
diff --git a/calendar/libecal/e-cal-util.c b/calendar/libecal/e-cal-util.c
index 7e85734..fdbe6a3 100644
--- a/calendar/libecal/e-cal-util.c
+++ b/calendar/libecal/e-cal-util.c
@@ -1266,7 +1266,7 @@ e_cal_util_remove_instances (icalcomponent *icalcomp,
  *
  * Returns: the split icalcomponent, or %NULL.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 icalcomponent *
 e_cal_util_split_at_instance (icalcomponent *icalcomp,
@@ -1414,7 +1414,7 @@ check_first_instance_cb (ECalComponent *comp,
  *
  * Return: Whether the @rid identifies the first instance of @comp.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_cal_util_is_first_instance (ECalComponent *comp,
diff --git a/camel/camel-certdb.c b/camel/camel-certdb.c
index c86cdd3..6a197a6 100644
--- a/camel/camel-certdb.c
+++ b/camel/camel-certdb.c
@@ -787,7 +787,7 @@ camel_certdb_clear (CamelCertDB *certdb)
  * Returns: (transfer full): (element-type CamelCert): Newly allocated list of
  *   referenced CamelCert-s, which are stored in the @certdb.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 GSList *
 camel_certdb_list_certs (CamelCertDB *certdb)
diff --git a/camel/camel-db.c b/camel/camel-db.c
index 5ef932e..72da7ed 100644
--- a/camel/camel-db.c
+++ b/camel/camel-db.c
@@ -2760,7 +2760,7 @@ get_number_cb (gpointer data,
  *
  * Returns: Whether succeeded.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 camel_db_maybe_run_maintenance (CamelDB *cdb,
diff --git a/camel/camel-internet-address.c b/camel/camel-internet-address.c
index 44c8d39..c89a4d4 100644
--- a/camel/camel-internet-address.c
+++ b/camel/camel-internet-address.c
@@ -381,7 +381,7 @@ domain_contains_only_ascii (const gchar *address,
  * which means that any non-ASCII letters will be properly encoded.
  * This includes IDN (Internationalized Domain Names).
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 camel_internet_address_ensure_ascii_domains (CamelInternetAddress *addr)
diff --git a/camel/camel-net-utils.c b/camel/camel-net-utils.c
index 1af3229..81f23d6 100644
--- a/camel/camel-net-utils.c
+++ b/camel/camel-net-utils.c
@@ -785,7 +785,7 @@ camel_freeaddrinfo (struct addrinfo *host)
  * Returns: Newly allocated string with only ASCII letters describing the @host.
  *   Free it with g_free() when done with it.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gchar *
 camel_host_idna_to_ascii (const gchar *host)
diff --git a/camel/camel-network-settings.c b/camel/camel-network-settings.c
index 80cec6d..cfc5145 100644
--- a/camel/camel-network-settings.c
+++ b/camel/camel-network-settings.c
@@ -245,7 +245,7 @@ camel_network_settings_dup_host (CamelNetworkSettings *settings)
  * Returns: a newly-allocated copy of #CamelNetworkSettings:host with
  *    only ASCII letters.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gchar *
 camel_network_settings_dup_host_ensure_ascii (CamelNetworkSettings *settings)
diff --git a/camel/camel-store.c b/camel/camel-store.c
index ab75a96..cd2ddb5 100644
--- a/camel/camel-store.c
+++ b/camel/camel-store.c
@@ -2917,7 +2917,7 @@ camel_store_synchronize_finish (CamelStore *store,
  *
  * Returns: Whether succeeded.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 camel_store_maybe_run_db_maintenance (CamelStore *store,
diff --git a/camel/providers/imapx/camel-imapx-job.c b/camel/providers/imapx/camel-imapx-job.c
index 648f42d..8f69b9f 100644
--- a/camel/providers/imapx/camel-imapx-job.c
+++ b/camel/providers/imapx/camel-imapx-job.c
@@ -427,7 +427,7 @@ camel_imapx_job_take_error (CamelIMAPXJob *job,
  *
  * Returns: Whether the job failed.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 camel_imapx_job_set_error_if_failed (CamelIMAPXJob *job,
diff --git a/camel/providers/imapx/camel-imapx-mailbox.c b/camel/providers/imapx/camel-imapx-mailbox.c
index 6b555d3..62c0b51 100644
--- a/camel/providers/imapx/camel-imapx-mailbox.c
+++ b/camel/providers/imapx/camel-imapx-mailbox.c
@@ -251,7 +251,7 @@ camel_imapx_mailbox_clone (CamelIMAPXMailbox *mailbox,
  *
  * Returns: Current (update) state of the mailbox.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 CamelIMAPXMailboxState
 camel_imapx_mailbox_get_state (CamelIMAPXMailbox *mailbox)
@@ -270,7 +270,7 @@ camel_imapx_mailbox_get_state (CamelIMAPXMailbox *mailbox)
  * structure updates, to identify newly created, updated, renamed
  * or removed mailboxes.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 camel_imapx_mailbox_set_state (CamelIMAPXMailbox *mailbox,
@@ -718,7 +718,7 @@ camel_imapx_mailbox_set_highestmodseq (CamelIMAPXMailbox *mailbox,
  * Returns: PERMANENTFLAGS response for the mailbox, or ~0, if the mailbox
  *    was not selected yet.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 guint32
 camel_imapx_mailbox_get_permanentflags (CamelIMAPXMailbox *mailbox)
@@ -735,7 +735,7 @@ camel_imapx_mailbox_get_permanentflags (CamelIMAPXMailbox *mailbox)
  *
  * Updates the last know value for PERMANENTFLAGS for this mailbox.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 camel_imapx_mailbox_set_permanentflags (CamelIMAPXMailbox *mailbox,
diff --git a/camel/providers/imapx/camel-imapx-namespace-response.c 
b/camel/providers/imapx/camel-imapx-namespace-response.c
index 579ba50..18acd5d 100644
--- a/camel/providers/imapx/camel-imapx-namespace-response.c
+++ b/camel/providers/imapx/camel-imapx-namespace-response.c
@@ -331,7 +331,7 @@ camel_imapx_namespace_response_list (CamelIMAPXNamespaceResponse *response)
  * Adds a @namespace into the list of namespaces. It adds its own
  * reference on the @namespace.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 camel_imapx_namespace_response_add (CamelIMAPXNamespaceResponse *response,
@@ -351,7 +351,7 @@ camel_imapx_namespace_response_add (CamelIMAPXNamespaceResponse *response,
  * Removes @namespace from the list of namespaces in the @response.
  * If no such namespace exists then does nothing.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 camel_imapx_namespace_response_remove (CamelIMAPXNamespaceResponse *response,
diff --git a/camel/providers/imapx/camel-imapx-search.c b/camel/providers/imapx/camel-imapx-search.c
index 5af9052..640415a 100644
--- a/camel/providers/imapx/camel-imapx-search.c
+++ b/camel/providers/imapx/camel-imapx-search.c
@@ -716,7 +716,7 @@ camel_imapx_search_set_store (CamelIMAPXSearch *search,
  * for the whole run of the search and reset them both to NULL after
  * the search is finished.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 camel_imapx_search_set_cancellable_and_error (CamelIMAPXSearch *search,
diff --git a/camel/providers/imapx/camel-imapx-settings.c b/camel/providers/imapx/camel-imapx-settings.c
index a781141..3540296 100644
--- a/camel/providers/imapx/camel-imapx-settings.c
+++ b/camel/providers/imapx/camel-imapx-settings.c
@@ -915,7 +915,7 @@ camel_imapx_settings_set_check_subscribed (CamelIMAPXSettings *settings,
  *
  * Returns: the number of concurrent connections to use
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 guint
 camel_imapx_settings_get_concurrent_connections (CamelIMAPXSettings *settings)
@@ -937,7 +937,7 @@ camel_imapx_settings_get_concurrent_connections (CamelIMAPXSettings *settings)
  * @concurrent_connections value will be clamped to these limits if
  * necessary.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 camel_imapx_settings_set_concurrent_connections (CamelIMAPXSettings *settings,
@@ -1563,7 +1563,7 @@ camel_imapx_settings_set_use_namespace (CamelIMAPXSettings *settings,
  *
  * Returns: whether to ignore namespace for other users
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 camel_imapx_settings_get_ignore_other_users_namespace (CamelIMAPXSettings *settings)
@@ -1580,7 +1580,7 @@ camel_imapx_settings_get_ignore_other_users_namespace (CamelIMAPXSettings *setti
  *
  * Sets whether to ignore other users namespace.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 camel_imapx_settings_set_ignore_other_users_namespace (CamelIMAPXSettings *settings,
@@ -1604,7 +1604,7 @@ camel_imapx_settings_set_ignore_other_users_namespace (CamelIMAPXSettings *setti
  *
  * Returns: whether to ignore namespace for shared folders
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 camel_imapx_settings_get_ignore_shared_folders_namespace (CamelIMAPXSettings *settings)
@@ -1621,7 +1621,7 @@ camel_imapx_settings_get_ignore_shared_folders_namespace (CamelIMAPXSettings *se
  *
  * Sets whether to ignore shared folders namespace.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 camel_imapx_settings_set_ignore_shared_folders_namespace (CamelIMAPXSettings *settings,
diff --git a/camel/providers/imapx/camel-imapx-store.c b/camel/providers/imapx/camel-imapx-store.c
index 7e6915b..8e21f49 100644
--- a/camel/providers/imapx/camel-imapx-store.c
+++ b/camel/providers/imapx/camel-imapx-store.c
@@ -2829,7 +2829,7 @@ camel_imapx_store_folder_op_done (CamelIMAPXStore *store,
  *
  * Returns: a #CamelIMAPXNamespaceResponse
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 CamelIMAPXNamespaceResponse *
 camel_imapx_store_ref_namespaces (CamelIMAPXStore *imapx_store)
@@ -3175,7 +3175,7 @@ imapx_store_rename_mailbox_unlocked (CamelIMAPXStore *imapx_store,
  *
  * Returns: a #CamelIMAPXMailbox, or %NULL
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 CamelIMAPXMailbox *
 camel_imapx_store_ref_mailbox (CamelIMAPXStore *imapx_store,
@@ -3218,7 +3218,7 @@ camel_imapx_store_ref_mailbox (CamelIMAPXStore *imapx_store,
  *
  * Returns: a list of #CamelIMAPXMailbox instances
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 GList *
 camel_imapx_store_list_mailboxes (CamelIMAPXStore *imapx_store,
diff --git a/libebackend/e-backend-factory.c b/libebackend/e-backend-factory.c
index 6786656..b8ef063 100644
--- a/libebackend/e-backend-factory.c
+++ b/libebackend/e-backend-factory.c
@@ -119,7 +119,7 @@ e_backend_factory_new_backend (EBackendFactory *factory,
  *
  * Returns: the filename for the module associated to the @factory
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 const gchar *
 e_backend_factory_get_module_filename (EBackendFactory *factory)
@@ -144,7 +144,7 @@ e_backend_factory_get_module_filename (EBackendFactory *factory)
  * Returns: TRUE if the @factory shares the subprocess for all its
  *          backends. Otherwise, FALSE.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_backend_factory_share_subprocess (EBackendFactory *factory)
diff --git a/libebackend/e-backend.c b/libebackend/e-backend.c
index 5f11224..1da8626 100644
--- a/libebackend/e-backend.c
+++ b/libebackend/e-backend.c
@@ -876,7 +876,7 @@ e_backend_ref_main_context (EBackend *backend)
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_backend_credentials_required_sync (EBackend *backend,
@@ -955,7 +955,7 @@ backend_credentials_required_thread (GTask *task,
  * When the operation is finished, @callback will be called. You can then
  * call e_backend_credentials_required_finish() to get the result of the operation.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_backend_credentials_required (EBackend *backend,
@@ -999,7 +999,7 @@ e_backend_credentials_required (EBackend *backend,
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_backend_credentials_required_finish (EBackend *backend,
@@ -1052,7 +1052,7 @@ backend_scheduled_credentials_required_done_cb (GObject *source_object,
  * This is useful when the caller just wants to start the operation
  * without having actual place where to show the operation result.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_backend_schedule_credentials_required (EBackend *backend,
@@ -1079,7 +1079,7 @@ e_backend_schedule_credentials_required (EBackend *backend,
  * received for the associated #ESource. With %NULL @credentials an attempt
  * without it is run.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_backend_schedule_authenticate        (EBackend *backend,
@@ -1367,7 +1367,7 @@ e_backend_is_destination_reachable (EBackend *backend,
  * to it anymore. The @backend can free any resources which reference it, for
  * example the opened views.
  *
- * Since: 3.14
+ * Since: 3.16
  */
 void
 e_backend_prepare_shutdown (EBackend *backend)
diff --git a/libebackend/e-collection-backend.c b/libebackend/e-collection-backend.c
index 274faa6..36c02f9 100644
--- a/libebackend/e-collection-backend.c
+++ b/libebackend/e-collection-backend.c
@@ -1717,7 +1717,7 @@ collection_backend_child_authenticate_done_cb (GObject *source_object,
  * the @credentials to connect to the (possibly) remote data store, to
  * open the childern too. Already connected child sources are skipped.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_collection_backend_authenticate_children (ECollectionBackend *backend,
diff --git a/libebackend/e-data-factory.c b/libebackend/e-data-factory.c
index aa4406a..2589c96 100644
--- a/libebackend/e-data-factory.c
+++ b/libebackend/e-data-factory.c
@@ -1068,7 +1068,7 @@ e_data_factory_ref_backend_factory (EDataFactory *data_factory,
  *
  * Returns: the #ESourceRegistry
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 ESourceRegistry *
 e_data_factory_get_registry (EDataFactory *data_factory)
@@ -1088,7 +1088,7 @@ e_data_factory_get_registry (EDataFactory *data_factory)
  * Returns: a newly allocated string, representing the object path for
  *          the D-Bus interface.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gchar *
 e_data_factory_construct_path (EDataFactory *data_factory)
@@ -1299,7 +1299,7 @@ data_factory_spawn_subprocess_backend_in_thread (gpointer user_data)
  * directly to the running backend. If the backend already has a subprocess
  * running, the used object path is returned to the client.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_data_factory_spawn_subprocess_backend (EDataFactory *data_factory,
diff --git a/libebackend/e-server-side-source-credentials-provider.c 
b/libebackend/e-server-side-source-credentials-provider.c
index ce287e7..748104e 100644
--- a/libebackend/e-server-side-source-credentials-provider.c
+++ b/libebackend/e-server-side-source-credentials-provider.c
@@ -79,7 +79,7 @@ e_server_side_source_credentials_provider_init (EServerSideSourceCredentialsProv
  *
  * Returns: (transfer full): a new #EServerSideSourceCredentialsProvider
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 ESourceCredentialsProvider *
 e_server_side_source_credentials_provider_new (ESourceRegistryServer *registry)
diff --git a/libebackend/e-server-side-source-credentials-provider.h 
b/libebackend/e-server-side-source-credentials-provider.h
index e830447..24dd08c 100644
--- a/libebackend/e-server-side-source-credentials-provider.h
+++ b/libebackend/e-server-side-source-credentials-provider.h
@@ -60,7 +60,7 @@ typedef struct _EServerSideSourceCredentialsProviderPrivate EServerSideSourceCre
  * Contains only private data that should be read and manipulated using the
  * functions below.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 struct _EServerSideSourceCredentialsProvider {
        ESourceCredentialsProvider parent;
diff --git a/libebackend/e-soup-ssl-trust.c b/libebackend/e-soup-ssl-trust.c
index 2fa3258..e00d6df 100644
--- a/libebackend/e-soup-ssl-trust.c
+++ b/libebackend/e-soup-ssl-trust.c
@@ -139,7 +139,7 @@ e_soup_ssl_trust_message_finalized_cb (gpointer data,
  * is not thread-safe; it is sufficient for safety if all use of @soup_message's
  * session and the disposal of @soup_message occur in the same thread.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_soup_ssl_trust_connect (SoupMessage *soup_message,
diff --git a/libebackend/e-source-registry-server.c b/libebackend/e-source-registry-server.c
index 741920b..8a678f7 100644
--- a/libebackend/e-source-registry-server.c
+++ b/libebackend/e-source-registry-server.c
@@ -990,7 +990,7 @@ e_source_registry_server_new (void)
  * Returns: A referenced #ESourceRegistryCredentialsProvider. Unref it with
  *    g_object_unref(), when no longer needed.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 ESourceCredentialsProvider *
 e_source_registry_server_ref_credentials_provider (ESourceRegistryServer *server)
diff --git a/libebackend/e-subprocess-factory.c b/libebackend/e-subprocess-factory.c
index 2fa077e..3363ffe 100644
--- a/libebackend/e-subprocess-factory.c
+++ b/libebackend/e-subprocess-factory.c
@@ -238,7 +238,7 @@ e_subprocess_factory_init (ESubprocessFactory *subprocess_factory)
  *
  * Returns: an #EBackend for @source, or %NULL
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 EBackend *
 e_subprocess_factory_ref_initable_backend (ESubprocessFactory *subprocess_factory,
@@ -317,7 +317,7 @@ exit:
  *
  * Returns: the #ESourceRegistry
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 ESourceRegistry *
 e_subprocess_factory_get_registry (ESubprocessFactory *subprocess_factory)
@@ -338,7 +338,7 @@ e_subprocess_factory_get_registry (ESubprocessFactory *subprocess_factory)
  *
  * This function is here for a lack of a better place
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gchar *
 e_subprocess_factory_construct_path (void)
@@ -367,7 +367,7 @@ e_subprocess_factory_construct_path (void)
  * Returns: a newly allocated string that represents the #EBackend
  *          data D-Bus object path.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gchar *
 e_subprocess_factory_open_backend (ESubprocessFactory *subprocess_factory,
@@ -414,7 +414,7 @@ e_subprocess_factory_open_backend (ESubprocessFactory *subprocess_factory,
  * Returns: A #GList that contains a list of used backends. The list should be freed
  * by the caller using: g_list_free_full (backends, g_object_unref).
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 GList *
 e_subprocess_factory_get_backends_list (ESubprocessFactory *subprocess_factory)
@@ -440,7 +440,7 @@ e_subprocess_factory_get_backends_list (ESubprocessFactory *subprocess_factory)
  *
  * Calls e_backend_prepare_shutdown() for the list of used backends.
  *
- * Since: 3.14
+ * Since: 3.16
  */
 void
 e_subprocess_factory_call_backends_prepare_shutdown (ESubprocessFactory *subprocess_factory)
@@ -469,7 +469,7 @@ e_subprocess_factory_call_backends_prepare_shutdown (ESubprocessFactory *subproc
  * Installs a toggle reference on the backend, that can receive a signal to
  * shutdown once all client connections are closed.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_subprocess_factory_set_backend_callbacks (ESubprocessFactory *subprocess_factory,
diff --git a/libebackend/e-subprocess-factory.h b/libebackend/e-subprocess-factory.h
index 0c27fa5..ebcb061 100644
--- a/libebackend/e-subprocess-factory.h
+++ b/libebackend/e-subprocess-factory.h
@@ -55,7 +55,7 @@ typedef struct _ESubprocessFactoryPrivate ESubprocessFactoryPrivate;
  * Contains only private data that should be read and manipulated using the
  * functions below.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 struct _ESubprocessFactory {
        GObject parent;
diff --git a/libedataserver/e-categories.c b/libedataserver/e-categories.c
index 61a9a94..626dcc1 100644
--- a/libedataserver/e-categories.c
+++ b/libedataserver/e-categories.c
@@ -532,7 +532,7 @@ initialize_categories (void)
  * but the names of the categories should not be touched at all, they are
  * internal strings.
  *
- * Deprecated: 3.14: This function is not entirely thread safe. Use
+ * Deprecated: 3.16: This function is not entirely thread safe. Use
  * e_categories_dup_list() instead.
  */
 GList *
@@ -571,7 +571,7 @@ e_categories_get_list (void)
  * and the names of the categories should be freed using g_free(). Everything
  * can be freed simultaneously using g_list_free_full().
  *
- * Since: 3.14
+ * Since: 3.16
  */
 GList *
 e_categories_dup_list (void)
@@ -699,7 +699,7 @@ e_categories_exist (const gchar *category)
  * copied, it may be freed by another thread after being returned by this
  * function. Use e_categories_dup_icon_file_for() instead.
  *
- * Deprecated: 3.14: This function is not entirely thread safe. Use
+ * Deprecated: 3.16: This function is not entirely thread safe. Use
  * e_categories_dup_icon_file_for() instead.
  *
  * Returns: icon file name.
@@ -737,7 +737,7 @@ e_categories_get_icon_file_for (const gchar *category)
  *
  * Returns: (transfer full): icon file name; free with g_free().
  *
- * Since: 3.14
+ * Since: 3.16
  */
 gchar *
 e_categories_dup_icon_file_for (const gchar *category)
diff --git a/libedataserver/e-client.c b/libedataserver/e-client.c
index d2ad89d..e939452 100644
--- a/libedataserver/e-client.c
+++ b/libedataserver/e-client.c
@@ -1880,7 +1880,7 @@ client_wait_for_connected_thread (GTask *task,
  * The call is finished by e_client_wait_for_connected_finish() from
  * the @callback.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_client_wait_for_connected (EClient *client,
@@ -1912,7 +1912,7 @@ e_client_wait_for_connected (EClient *client,
  *
  * Returns: %TRUE if successful, %FALSE otherwise.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_client_wait_for_connected_finish (EClient *client,
@@ -1965,7 +1965,7 @@ client_wait_for_connected_notify_cb (ESource *source,
  *
  * Returns: %TRUE if successful, %FALSE otherwise.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_client_wait_for_connected_sync (EClient *client,
@@ -2037,7 +2037,7 @@ e_client_wait_for_connected_sync (EClient *client,
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_client_retrieve_properties_sync (EClient *client,
@@ -2086,7 +2086,7 @@ client_retrieve_properties_thread (GTask *task,
  * When the operation is finished, @callback will be called. You can then
  * call e_client_retrieve_properties_finish() to get the result of the operation.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_client_retrieve_properties (EClient *client,
@@ -2117,7 +2117,7 @@ e_client_retrieve_properties (EClient *client,
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_client_retrieve_properties_finish (EClient *client,
@@ -2430,7 +2430,7 @@ e_client_util_unwrap_dbus_error (GError *dbus_error,
  *          the backend subprocess. The string should be
  *          freed by the caller using g_free().
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gchar *
 e_client_dup_bus_name (EClient *client)
@@ -2448,7 +2448,7 @@ e_client_dup_bus_name (EClient *client)
  * Sets a D-Bus bus name that will be used to connect the client
  * to the backend subprocess.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_client_set_bus_name (EClient *client,
diff --git a/libedataserver/e-data-server-util.c b/libedataserver/e-data-server-util.c
index e38d00f..709016b 100644
--- a/libedataserver/e-data-server-util.c
+++ b/libedataserver/e-data-server-util.c
@@ -1099,7 +1099,7 @@ e_util_free_nullable_object_slist (GSList *objects)
  * Calls g_free() on @string, but before it rewrites its content with zeros.
  * This is suitable to free strings with passwords.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_util_safe_free_string (gchar *str)
@@ -2070,7 +2070,7 @@ e_named_parameters_new_strv (const gchar * const *strv)
  *
  * Returns: newly allocated #ENamedParameters
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 ENamedParameters *
 e_named_parameters_new_clone (const ENamedParameters *parameters)
@@ -2497,7 +2497,7 @@ e_timeout_add_seconds_with_name (gint priority,
  * Returns: Whether debugging is enabled, that is,
  * whether e_source_registry_debug_print() will produce any output.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_registry_debug_enabled (void)
@@ -2518,7 +2518,7 @@ e_source_registry_debug_enabled (void)
  * Prints the text only if a debugging is enabled with an environment
  * variable ESR_DEBUG=1.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_source_registry_debug_print (const gchar *format,
diff --git a/libedataserver/e-free-form-exp.c b/libedataserver/e-free-form-exp.c
index 667bdf7..f158f08 100644
--- a/libedataserver/e-free-form-exp.c
+++ b/libedataserver/e-free-form-exp.c
@@ -284,7 +284,7 @@ ffe_finish_and_or_not (GString *sexp)
  * Returns: converted @free_form_exp into S-Expression, %NULL on error.
  *    Free the returned string with a g_free(), when done with it.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gchar *
 e_free_form_exp_to_sexp (const gchar *free_form_exp,
diff --git a/libedataserver/e-module.c b/libedataserver/e-module.c
index feb0c14..daff3b5 100644
--- a/libedataserver/e-module.c
+++ b/libedataserver/e-module.c
@@ -328,7 +328,7 @@ e_module_load_all_in_directory (const gchar *dirname)
  *
  * Returns: an #EModule loaded from @filename
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 EModule *
 e_module_load_file (const gchar *filename)
diff --git a/libedataserver/e-source-authentication.c b/libedataserver/e-source-authentication.c
index b648a9d..0784af9 100644
--- a/libedataserver/e-source-authentication.c
+++ b/libedataserver/e-source-authentication.c
@@ -886,7 +886,7 @@ e_source_authentication_set_user (ESourceAuthentication *extension,
  *
  * Returns: the credential name to use for authentication, or %NULL
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 const gchar *
 e_source_authentication_get_credential_name (ESourceAuthentication *extension)
@@ -907,7 +907,7 @@ e_source_authentication_get_credential_name (ESourceAuthentication *extension)
  *
  * Returns: a newly-allocated copy of #ESourceAuthentication:credential-name
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gchar *
 e_source_authentication_dup_credential_name (ESourceAuthentication *extension)
@@ -941,7 +941,7 @@ e_source_authentication_dup_credential_name (ESourceAuthentication *extension)
  * of leading and trailing whitespace. If the resulting string is
  * empty, %NULL is set instead.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_source_authentication_set_credential_name (ESourceAuthentication *extension,
diff --git a/libedataserver/e-source-credentials-provider-impl-password.h 
b/libedataserver/e-source-credentials-provider-impl-password.h
index 64343e3..a566591 100644
--- a/libedataserver/e-source-credentials-provider-impl-password.h
+++ b/libedataserver/e-source-credentials-provider-impl-password.h
@@ -57,7 +57,7 @@ typedef struct _ESourceCredentialsProviderImplPasswordPrivate ESourceCredentials
  *
  * Password based credentials provider implementation.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 struct _ESourceCredentialsProviderImplPassword {
        ESourceCredentialsProviderImpl parent;
diff --git a/libedataserver/e-source-credentials-provider-impl.c 
b/libedataserver/e-source-credentials-provider-impl.c
index 1082208..6867ee8 100644
--- a/libedataserver/e-source-credentials-provider-impl.c
+++ b/libedataserver/e-source-credentials-provider-impl.c
@@ -117,7 +117,7 @@ e_source_credentials_provider_impl_init (ESourceCredentialsProviderImpl *provide
  *
  * Returns: an #ESourceCredentialsProvider
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 ESourceCredentialsProvider *
 e_source_credentials_provider_impl_get_provider (ESourceCredentialsProviderImpl *provider_impl)
@@ -142,7 +142,7 @@ e_source_credentials_provider_impl_get_provider (ESourceCredentialsProviderImpl
  *
  * Returns: Whether the @provider_impl can process credentials for the @source.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_credentials_provider_impl_can_process (ESourceCredentialsProviderImpl *provider_impl,
@@ -167,7 +167,7 @@ e_source_credentials_provider_impl_can_process (ESourceCredentialsProviderImpl *
  *
  * Returns: Whether the @provider_impl can store credentials.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_credentials_provider_impl_can_store (ESourceCredentialsProviderImpl *provider_impl)
@@ -190,7 +190,7 @@ e_source_credentials_provider_impl_can_store (ESourceCredentialsProviderImpl *pr
  *
  * Returns: Whether credential prompt can be done for the @provider_impl.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_credentials_provider_impl_can_prompt (ESourceCredentialsProviderImpl *provider_impl)
@@ -224,7 +224,7 @@ e_source_credentials_provider_impl_can_prompt (ESourceCredentialsProviderImpl *p
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_credentials_provider_impl_lookup_sync (ESourceCredentialsProviderImpl *provider_impl,
@@ -262,7 +262,7 @@ e_source_credentials_provider_impl_lookup_sync (ESourceCredentialsProviderImpl *
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_credentials_provider_impl_store_sync (ESourceCredentialsProviderImpl *provider_impl,
@@ -299,7 +299,7 @@ e_source_credentials_provider_impl_store_sync (ESourceCredentialsProviderImpl *p
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_credentials_provider_impl_delete_sync (ESourceCredentialsProviderImpl *provider_impl,
diff --git a/libedataserver/e-source-credentials-provider-impl.h 
b/libedataserver/e-source-credentials-provider-impl.h
index 73c5e5e..5902fa1 100644
--- a/libedataserver/e-source-credentials-provider-impl.h
+++ b/libedataserver/e-source-credentials-provider-impl.h
@@ -62,7 +62,7 @@ struct _ESourceCredentialsProvider;
  * implement the virtual methods. The descendants are automatically
  * registered into an #ESourceCredentialsProvider.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 struct _ESourceCredentialsProviderImpl {
        EExtension parent;
diff --git a/libedataserver/e-source-credentials-provider.c b/libedataserver/e-source-credentials-provider.c
index c18f4e7..2d3abfc 100644
--- a/libedataserver/e-source-credentials-provider.c
+++ b/libedataserver/e-source-credentials-provider.c
@@ -270,7 +270,7 @@ source_credential_provider_ref_impl_for_source (ESourceCredentialsProvider *prov
  *
  * Returns: (transfer full): a new #ESourceCredentialsProvider
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 ESourceCredentialsProvider *
 e_source_credentials_provider_new (ESourceRegistry *registry)
@@ -291,7 +291,7 @@ e_source_credentials_provider_new (ESourceRegistry *registry)
  * Returns: Reference registry associated with this @provider. Unref it
  *    with g_object_unref() when no longer needed.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 GObject *
 e_source_credentials_provider_ref_registry (ESourceCredentialsProvider *provider)
@@ -312,7 +312,7 @@ e_source_credentials_provider_ref_registry (ESourceCredentialsProvider *provider
  * Returns: %TRUE on success, %FALSE on failure, like when there is
  *    the @provider_impl already registered.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_credentials_provider_register_impl (ESourceCredentialsProvider *provider,
@@ -354,7 +354,7 @@ e_source_credentials_provider_register_impl (ESourceCredentialsProvider *provide
  * e_source_credentials_provider_register_impl(). Function does nothing,
  * when the @provider_impl is not registered.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_source_credentials_provider_unregister_impl (ESourceCredentialsProvider *provider,
@@ -379,7 +379,7 @@ e_source_credentials_provider_unregister_impl (ESourceCredentialsProvider *provi
  * Returns: (transfer full): Referenced #ESource with the given @uid, or %NULL, when it
  *    could not be found. Unref the returned #ESource with g_object_unref(), when no longer needed.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 ESource *
 e_source_credentials_provider_ref_source (ESourceCredentialsProvider *provider,
@@ -410,7 +410,7 @@ e_source_credentials_provider_ref_source (ESourceCredentialsProvider *provider,
  * Returns: referenced parent #ESource, which holds credentials, or %NULL. Unref
  *    the returned non-NULL #ESource with g_object_unref(), when no longer needed.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 ESource *
 e_source_credentials_provider_ref_credentials_source (ESourceCredentialsProvider *provider,
@@ -506,7 +506,7 @@ e_source_credentials_provider_ref_credentials_source (ESourceCredentialsProvider
  *
  * Returns: %TRUE, when the credentials storing for @source is possible, %FALSE otherwise.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_credentials_provider_can_store (ESourceCredentialsProvider *provider,
@@ -537,7 +537,7 @@ e_source_credentials_provider_can_store (ESourceCredentialsProvider *provider,
  *
  * Returns: %TRUE, when a credentials prompt can be shown for @source, %FALSE otherwise.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_credentials_provider_can_prompt (ESourceCredentialsProvider *provider,
@@ -607,7 +607,7 @@ async_context_free (gpointer ptr)
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_credentials_provider_lookup_sync (ESourceCredentialsProvider *provider,
@@ -673,7 +673,7 @@ source_credentials_provider_lookup_thread (GTask *task,
  * call e_source_credentials_provider_lookup_finish() to get the result
  * of the operation.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_source_credentials_provider_lookup (ESourceCredentialsProvider *provider,
@@ -719,7 +719,7 @@ e_source_credentials_provider_lookup (ESourceCredentialsProvider *provider,
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_credentials_provider_lookup_finish (ESourceCredentialsProvider *provider,
@@ -764,7 +764,7 @@ e_source_credentials_provider_lookup_finish (ESourceCredentialsProvider *provide
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_credentials_provider_store_sync (ESourceCredentialsProvider *provider,
@@ -836,7 +836,7 @@ source_credentials_provider_store_thread (GTask *task,
  * call e_source_credentials_provider_store_finish() to get the result
  * of the operation.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_source_credentials_provider_store (ESourceCredentialsProvider *provider,
@@ -883,7 +883,7 @@ e_source_credentials_provider_store (ESourceCredentialsProvider *provider,
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_credentials_provider_store_finish (ESourceCredentialsProvider *provider,
@@ -913,7 +913,7 @@ e_source_credentials_provider_store_finish (ESourceCredentialsProvider *provider
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_credentials_provider_delete_sync (ESourceCredentialsProvider *provider,
@@ -974,7 +974,7 @@ source_credentials_provider_delete_thread (GTask *task,
  * call e_source_credentials_provider_delete_finish() to get the result
  * of the operation.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_source_credentials_provider_delete (ESourceCredentialsProvider *provider,
@@ -1019,7 +1019,7 @@ e_source_credentials_provider_delete (ESourceCredentialsProvider *provider,
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_credentials_provider_delete_finish (ESourceCredentialsProvider *provider,
diff --git a/libedataserver/e-source-credentials-provider.h b/libedataserver/e-source-credentials-provider.h
index 337a55a..88b4876 100644
--- a/libedataserver/e-source-credentials-provider.h
+++ b/libedataserver/e-source-credentials-provider.h
@@ -62,7 +62,7 @@ typedef struct _ESourceCredentialsProviderPrivate ESourceCredentialsProviderPriv
  * Contains only private data that should be read and manipulated using the
  * functions below.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 struct _ESourceCredentialsProvider {
        GObject parent;
diff --git a/libedataserver/e-source-enums.h b/libedataserver/e-source-enums.h
index e33ccc4..49d636d 100644
--- a/libedataserver/e-source-enums.h
+++ b/libedataserver/e-source-enums.h
@@ -70,7 +70,7 @@ typedef enum {
  * @E_SOURCE_AUTHENTICATION_ERROR:
  *   An error occurred while authenticating.
  * @E_SOURCE_AUTHENTICATION_ERROR_SSL_FAILED:
- *   An SSL certificate check failed. Since: 3.14.
+ *   An SSL certificate check failed. Since: 3.16.
  * @E_SOURCE_AUTHENTICATION_ACCEPTED:
  *   Server requesting authentication accepted password.
  * @E_SOURCE_AUTHENTICATION_REJECTED:
@@ -126,7 +126,7 @@ typedef enum {
  * do close the password prompt in the other client, because the credentials had
  * been already provided.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 typedef enum {
        E_SOURCE_CONNECTION_STATUS_DISCONNECTED,
@@ -157,7 +157,7 @@ typedef enum {
  *
  * An ESource's authentication reason, used by an ESource::CredentialsRequired method.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 typedef enum {
        E_SOURCE_CREDENTIALS_REASON_UNKNOWN,
diff --git a/libedataserver/e-source-mail-account.c b/libedataserver/e-source-mail-account.c
index f544be3..eae7693 100644
--- a/libedataserver/e-source-mail-account.c
+++ b/libedataserver/e-source-mail-account.c
@@ -265,7 +265,7 @@ e_source_mail_account_set_identity_uid (ESourceMailAccount *extension,
  *
  * Returns: an identifier of the archive folder
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 const gchar *
 e_source_mail_account_get_archive_folder (ESourceMailAccount *extension)
@@ -286,7 +286,7 @@ e_source_mail_account_get_archive_folder (ESourceMailAccount *extension)
  *
  * Returns: a newly-allocated copy of #ESourceMailAccount:archive-folder
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gchar *
 e_source_mail_account_dup_archive_folder (ESourceMailAccount *extension)
@@ -318,7 +318,7 @@ e_source_mail_account_dup_archive_folder (ESourceMailAccount *extension)
  * and trailing whitespace. If the resulting string is empty, %NULL is set
  * instead.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_source_mail_account_set_archive_folder (ESourceMailAccount *extension,
diff --git a/libedataserver/e-source-webdav.c b/libedataserver/e-source-webdav.c
index f696fdf..8b38de9 100644
--- a/libedataserver/e-source-webdav.c
+++ b/libedataserver/e-source-webdav.c
@@ -1300,7 +1300,7 @@ encode_ssl_trust (ESourceWebdav *extension,
  * time it'll be needed. An #E_TRUST_PROMPT_RESPONSE_UNKNOWN is treated as
  * a temporary reject, which means the user will be asked again.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_source_webdav_update_ssl_trust (ESourceWebdav *extension,
diff --git a/libedataserver/e-source.c b/libedataserver/e-source.c
index 70bb567..ad68a64 100644
--- a/libedataserver/e-source.c
+++ b/libedataserver/e-source.c
@@ -3658,7 +3658,7 @@ e_source_parameter_to_key (const gchar *param_name)
  *
  * Returns: Current connection status of the @source.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 ESourceConnectionStatus
 e_source_get_connection_status (ESource *source)
@@ -3675,7 +3675,7 @@ e_source_get_connection_status (ESource *source)
  *
  * Set's current connection status of the @source.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_source_set_connection_status (ESource *source,
@@ -4732,7 +4732,7 @@ e_source_delete_password_finish (ESource *source,
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_invoke_credentials_required_sync (ESource *source,
@@ -4882,7 +4882,7 @@ source_invoke_credentials_required_thread (GTask *task,
  * When the operation is finished, @callback will be called. You can then
  * call e_source_invoke_credentials_required_finish() to get the result of the operation.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_source_invoke_credentials_required (ESource *source,
@@ -4926,7 +4926,7 @@ e_source_invoke_credentials_required (ESource *source,
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_invoke_credentials_required_finish (ESource *source,
@@ -4958,7 +4958,7 @@ e_source_invoke_credentials_required_finish (ESource *source,
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_invoke_authenticate_sync (ESource *source,
@@ -5065,7 +5065,7 @@ source_invoke_authenticate_thread (GTask *task,
  * When the operation is finished, @callback will be called. You can then
  * call e_source_invoke_authenticate_finish() to get the result of the operation.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_source_invoke_authenticate (ESource *source,
@@ -5102,7 +5102,7 @@ e_source_invoke_authenticate (ESource *source,
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_invoke_authenticate_finish (ESource *source,
@@ -5130,7 +5130,7 @@ e_source_invoke_authenticate_finish (ESource *source,
  * signal with given parameters. That's the difference with e_source_invoke_credentials_required(),
  * which calls the signal globally, within each client.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_source_emit_credentials_required (ESource *source,
@@ -5164,7 +5164,7 @@ e_source_emit_credentials_required (ESource *source,
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_get_last_credentials_required_arguments_sync (ESource *source,
@@ -5280,7 +5280,7 @@ source_get_last_credentials_required_arguments_thread (GTask *task,
  * call e_source_get_last_credentials_required_arguments_finish() to get
  * the result of the operation.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_source_get_last_credentials_required_arguments (ESource *source,
@@ -5318,7 +5318,7 @@ e_source_get_last_credentials_required_arguments (ESource *source,
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_source_get_last_credentials_required_arguments_finish (ESource *source,
diff --git a/libedataserver/e-source.h b/libedataserver/e-source.h
index 74d59d9..81a70c8 100644
--- a/libedataserver/e-source.h
+++ b/libedataserver/e-source.h
@@ -64,7 +64,7 @@
  * and e_source_invoke_authenticate(). The named parameter is optional,
  * different authentication methods can use different names.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 #define E_SOURCE_CREDENTIAL_USERNAME "username"
 
@@ -76,7 +76,7 @@
  * and e_source_invoke_authenticate(). The named parameter is optional,
  * different authentication methods can use different names.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 #define E_SOURCE_CREDENTIAL_PASSWORD "password"
 
@@ -95,7 +95,7 @@
  * corresponding ESource contain a WebDAV extension and the key
  * is not part of the credentials already.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 #define E_SOURCE_CREDENTIAL_SSL_TRUST "ssl-trust"
 
diff --git a/libedataserverui/e-credentials-prompter-impl-password.c 
b/libedataserverui/e-credentials-prompter-impl-password.c
index 4affc7d..76374f3 100644
--- a/libedataserverui/e-credentials-prompter-impl-password.c
+++ b/libedataserverui/e-credentials-prompter-impl-password.c
@@ -552,7 +552,7 @@ e_credentials_prompter_impl_password_init (ECredentialsPrompterImplPassword *pro
  * Returns: (transfer full): a newly created #ECredentialsPrompterImplPassword,
  *    which should be freed with g_object_unref() when no longer needed.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 ECredentialsPrompterImpl *
 e_credentials_prompter_impl_password_new (void)
diff --git a/libedataserverui/e-credentials-prompter-impl-password.h 
b/libedataserverui/e-credentials-prompter-impl-password.h
index dd3a839..5eda844 100644
--- a/libedataserverui/e-credentials-prompter-impl-password.h
+++ b/libedataserverui/e-credentials-prompter-impl-password.h
@@ -58,7 +58,7 @@ typedef struct _ECredentialsPrompterImplPasswordPrivate ECredentialsPrompterImpl
  * Contains only private data that should be read and manipulated using the
  * functions below.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 struct _ECredentialsPrompterImplPassword {
        ECredentialsPrompterImpl parent;
diff --git a/libedataserverui/e-credentials-prompter-impl.c b/libedataserverui/e-credentials-prompter-impl.c
index 11b6eaf..60f6f9a 100644
--- a/libedataserverui/e-credentials-prompter-impl.c
+++ b/libedataserverui/e-credentials-prompter-impl.c
@@ -93,7 +93,7 @@ e_credentials_prompter_impl_class_init (ECredentialsPrompterImplClass *klass)
         *
         * Emitted when a prompt of ID @prompt_id is finished.
         *
-        * Since: 3.14
+        * Since: 3.16
         **/
        signals[PROMPT_FINISHED] = g_signal_new (
                "prompt-finished",
@@ -121,7 +121,7 @@ e_credentials_prompter_impl_init (ECredentialsPrompterImpl *prompter_impl)
  *
  * Returns: an #ECredentialsPrompter
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 ECredentialsPrompter *
 e_credentials_prompter_impl_get_credentials_prompter (ECredentialsPrompterImpl *prompter_impl)
@@ -158,7 +158,7 @@ e_credentials_prompter_impl_get_credentials_prompter (ECredentialsPrompterImpl *
  * which can be a case when the @auth_source is part of a collection, then
  * the @cred_stource can be that collection source.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_credentials_prompter_impl_prompt (ECredentialsPrompterImpl *prompter_impl,
@@ -195,7 +195,7 @@ e_credentials_prompter_impl_prompt (ECredentialsPrompterImpl *prompter_impl,
  * Use %NULL @credentials for cancelled prompts, otherwise the credentials are used
  * for authentication of the associated #ESource.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_credentials_prompter_impl_prompt_finish (ECredentialsPrompterImpl *prompter_impl,
@@ -215,7 +215,7 @@ e_credentials_prompter_impl_prompt_finish (ECredentialsPrompterImpl *prompter_im
  *
  * Asks the @prompt_impl to cancel current prompt, which should have ID @prompt_id.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_credentials_prompter_impl_cancel_prompt (ECredentialsPrompterImpl *prompter_impl,
diff --git a/libedataserverui/e-credentials-prompter-impl.h b/libedataserverui/e-credentials-prompter-impl.h
index 806fa6e..3726dd4 100644
--- a/libedataserverui/e-credentials-prompter-impl.h
+++ b/libedataserverui/e-credentials-prompter-impl.h
@@ -62,7 +62,7 @@ struct _ECredentialsPrompter;
  * prompt for credentials. The descendants are automatically registered
  * into an #ECredentialsPrompter.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 struct _ECredentialsPrompterImpl {
        EExtension parent;
diff --git a/libedataserverui/e-credentials-prompter.c b/libedataserverui/e-credentials-prompter.c
index 176c537..0dbd2d3 100644
--- a/libedataserverui/e-credentials-prompter.c
+++ b/libedataserverui/e-credentials-prompter.c
@@ -961,7 +961,7 @@ e_credentials_prompter_class_init (ECredentialsPrompterClass *class)
         * Whether the #ECredentialsPrompter can response to credential
         * requests automatically.
         *
-        * Since: 3.14
+        * Since: 3.16
         **/
        g_object_class_install_property (
                object_class,
@@ -980,7 +980,7 @@ e_credentials_prompter_class_init (ECredentialsPrompterClass *class)
         *
         * The #ESourceRegistry object, to whose credential requests the prompter listens.
         *
-        * Since: 3.14
+        * Since: 3.16
         **/
        g_object_class_install_property (
                object_class,
@@ -999,7 +999,7 @@ e_credentials_prompter_class_init (ECredentialsPrompterClass *class)
         *
         * The #ESourceCredentialsProvider object, which the prompter uses.
         *
-        * Since: 3.14
+        * Since: 3.16
         **/
        g_object_class_install_property (
                object_class,
@@ -1020,7 +1020,7 @@ e_credentials_prompter_class_init (ECredentialsPrompterClass *class)
         * window for it. If the result of the call is %NULL, then it tries
         * to get the window from the default GtkApplication.
         *
-        * Since: 3.14
+        * Since: 3.16
         **/
        signals[GET_DIALOG_PARENT] = g_signal_new (
                "get-dialog-parent",
@@ -1062,7 +1062,7 @@ e_credentials_prompter_init (ECredentialsPrompter *prompter)
  *
  * Returns: (transfer full): a new #ECredentialsPrompter
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 ECredentialsPrompter *
 e_credentials_prompter_new (ESourceRegistry *registry)
@@ -1080,7 +1080,7 @@ e_credentials_prompter_new (ESourceRegistry *registry)
  *
  * Returns: (transfer none): an #ESourceRegistry, to which the @prompter listens.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 ESourceRegistry *
 e_credentials_prompter_get_registry (ECredentialsPrompter *prompter)
@@ -1098,7 +1098,7 @@ e_credentials_prompter_get_registry (ECredentialsPrompter *prompter)
  *
  * Returns: (transfer none): an #ESourceCredentialsProvider, which the @prompter uses.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 ESourceCredentialsProvider *
 e_credentials_prompter_get_provider (ECredentialsPrompter *prompter)
@@ -1120,7 +1120,7 @@ e_credentials_prompter_get_provider (ECredentialsPrompter *prompter)
  *
  * Returns: Whether can respond to credential prompts automatically.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_credentials_prompter_get_auto_prompt (ECredentialsPrompter *prompter)
@@ -1143,7 +1143,7 @@ e_credentials_prompter_get_auto_prompt (ECredentialsPrompter *prompter)
  *
  * This property does not influence direct calls of e_credentials_prompter_prompt().
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_credentials_prompter_set_auto_prompt (ECredentialsPrompter *prompter,
@@ -1170,7 +1170,7 @@ e_credentials_prompter_set_auto_prompt (ECredentialsPrompter *prompter,
  *
  * This value does not influence direct calls of e_credentials_prompter_prompt().
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_credentials_prompter_set_auto_prompt_disabled_for (ECredentialsPrompter *prompter,
@@ -1203,7 +1203,7 @@ e_credentials_prompter_set_auto_prompt_disabled_for (ECredentialsPrompter *promp
  *
  * Returns: Whether the auto-prompt is disabled for the given @source
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_credentials_prompter_get_auto_prompt_disabled_for (ECredentialsPrompter *prompter,
@@ -1250,7 +1250,7 @@ credentials_prompter_guess_dialog_parent (ECredentialsPrompter *prompter)
  *
  * Returns: (transfer none): a #GtkWindow, to be used as a dialog parent, or %NULL.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 GtkWindow *
 e_credentials_prompter_get_dialog_parent (ECredentialsPrompter *prompter)
@@ -1286,7 +1286,7 @@ e_credentials_prompter_get_dialog_parent (ECredentialsPrompter *prompter)
  * Returns: %TRUE on success, %FALSE on failure or when there was another prompter
  * implementation registered for the given authentication method.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_credentials_prompter_register_impl (ECredentialsPrompter *prompter,
@@ -1331,7 +1331,7 @@ e_credentials_prompter_register_impl (ECredentialsPrompter *prompter,
  * e_credentials_prompter_register_impl(). Function does nothing, if no such authentication
  * method is registered or if it has set a different prompter implementation.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_credentials_prompter_unregister_impl (ECredentialsPrompter *prompter,
@@ -1413,7 +1413,7 @@ credentials_prompter_get_last_credentials_required_arguments_cb (GObject *source
  * Process all enabled sources with connection state #E_SOURCE_CONNECTION_STATUS_AWAITING_CREDENTIALS,
  * like if they just asked for its credentials for the first time.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_credentials_prompter_process_awaiting_credentials (ECredentialsPrompter *prompter)
@@ -1449,7 +1449,7 @@ e_credentials_prompter_process_awaiting_credentials (ECredentialsPrompter *promp
  *
  * Returns: Whether continues with the credentials prompt.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_credentials_prompter_process_source (ECredentialsPrompter *prompter,
@@ -1483,7 +1483,7 @@ e_credentials_prompter_process_source (ECredentialsPrompter *prompter,
  * Call e_credentials_prompter_prompt_finish() in @callback to get to
  * the provided credentials.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_credentials_prompter_prompt (ECredentialsPrompter *prompter,
@@ -1527,7 +1527,7 @@ e_credentials_prompter_prompt (ECredentialsPrompter *prompter,
  *
  * Returns: %TRUE on success, %FALSE otherwise.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_credentials_prompter_prompt_finish (ECredentialsPrompter *prompter,
@@ -1583,7 +1583,7 @@ e_credentials_prompter_prompt_finish (ECredentialsPrompter *prompter,
  * Using %NULL @credentials will result in a G_IO_ERROR_CANCELLED error, if
  * no other @error is provided.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_credentials_prompter_complete_prompt_call (ECredentialsPrompter *prompter,
@@ -1712,7 +1712,7 @@ credentials_prompter_prompt_sync (ECredentialsPrompter *prompter,
  * Returns: %TRUE, when the credentials were provided sucessfully and they
  *   can be used to authenticate the @source; %FALSE otherwise.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_credentials_prompter_loop_prompt_sync (ECredentialsPrompter *prompter,
diff --git a/libedataserverui/e-credentials-prompter.h b/libedataserverui/e-credentials-prompter.h
index 5fcbef9..6aa724c 100644
--- a/libedataserverui/e-credentials-prompter.h
+++ b/libedataserverui/e-credentials-prompter.h
@@ -73,7 +73,7 @@ typedef struct _ECredentialsPrompterPrivate ECredentialsPrompterPrivate;
  * An #ECredentialsPrompter prompt flags, influencing behaviour
  * of the e_credentials_prompter_prompt().
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 typedef enum {
        E_CREDENTIALS_PROMPTER_PROMPT_FLAG_NONE                         = 0,
@@ -108,7 +108,7 @@ typedef gboolean (*ECredentialsPrompterLoopPromptFunc) (ECredentialsPrompter *pr
  * Contains only private data that should be read and manipulated using the
  * functions below.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 struct _ECredentialsPrompter {
        GObject parent;
diff --git a/libedataserverui/e-trust-prompt.c b/libedataserverui/e-trust-prompt.c
index 8c1772a..9c6c62c 100644
--- a/libedataserverui/e-trust-prompt.c
+++ b/libedataserverui/e-trust-prompt.c
@@ -262,7 +262,7 @@ trust_prompt_show (GtkWindow *parent,
  * Returns: (transfer-full): A newly allocated string with text description
  *  of @flags. Free the returned pointer with g_free() when no longer needed.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gchar *
 e_trust_prompt_describe_certificate_errors (GTlsCertificateFlags flags)
@@ -398,7 +398,7 @@ e_trust_prompt_run_with_dialog_ready_callback (GtkWindow *parent,
  * Returns: A code of the user's choice. The #E_TRUST_PROMPT_RESPONSE_UNKNOWN
  *    is returned, when the user cancelled the trust prompt dialog.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 ETrustPromptResponse
 e_trust_prompt_run_modal (GtkWindow *parent,
@@ -510,7 +510,7 @@ save_source_thread (GTask *task,
  * Note: The dialog is not shown when the stored certificate trust in the WebDAV @source
  *    matches the @certificate_pem and the stored result is #E_TRUST_PROMPT_RESPONSE_REJECT.
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 void
 e_trust_prompt_run_for_source (GtkWindow *parent,
@@ -639,7 +639,7 @@ e_trust_prompt_run_for_source (GtkWindow *parent,
  *
  * Returns: %TRUE on success, %FALSE on error
  *
- * Since: 3.14
+ * Since: 3.16
  **/
 gboolean
 e_trust_prompt_run_for_source_finish (ESource *source,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]