summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Nicholson <nicholson@endlessm.com>2020-02-20 15:44:51 -0700
committerDan Nicholson <nicholson@endlessm.com>2020-02-20 15:47:41 -0700
commit3557e4e1652fdae19a18099e08dfe65ef1cf9cd7 (patch)
tree0263e6ff303a2459848d835eb83a8715d15c24a5
parentb39c03ab97cf69c3a862504634cc8e4a0918feae (diff)
downloadostree-fixup-since-versions.tar.gz
lib: Fix Since versions for 2020.1fixup-since-versions
These had been added assuming 2019.7 would be the next version, but now it's 2020 and there's been a release. In the case of `OstreeCommitSizesEntry`, I'd forgotten to move it forward from 2019.5 to 2019.7 in the time between when I started working on the feature and it landed.
-rw-r--r--src/libostree/ostree-core.c8
-rw-r--r--src/libostree/ostree-core.h2
-rw-r--r--src/libostree/ostree-gpg-verify-result.h6
-rw-r--r--src/libostree/ostree-sysroot.c6
4 files changed, 11 insertions, 11 deletions
diff --git a/src/libostree/ostree-core.c b/src/libostree/ostree-core.c
index 4667dd8f..48815bd3 100644
--- a/src/libostree/ostree-core.c
+++ b/src/libostree/ostree-core.c
@@ -2445,7 +2445,7 @@ G_DEFINE_BOXED_TYPE (OstreeCommitSizesEntry, ostree_commit_sizes_entry,
* commit's "ostree.sizes" metadata.
*
* Returns: (transfer full) (nullable): a new #OstreeCommitSizesEntry
- * Since: 2019.7
+ * Since: 2020.1
*/
OstreeCommitSizesEntry *
ostree_commit_sizes_entry_new (const gchar *checksum,
@@ -2471,7 +2471,7 @@ ostree_commit_sizes_entry_new (const gchar *checksum,
* Create a copy of the given @entry.
*
* Returns: (transfer full) (nullable): a new copy of @entry
- * Since: 2019.7
+ * Since: 2020.1
*/
OstreeCommitSizesEntry *
ostree_commit_sizes_entry_copy (const OstreeCommitSizesEntry *entry)
@@ -2490,7 +2490,7 @@ ostree_commit_sizes_entry_copy (const OstreeCommitSizesEntry *entry)
*
* Free given @entry.
*
- * Since: 2019.7
+ * Since: 2020.1
*/
void
ostree_commit_sizes_entry_free (OstreeCommitSizesEntry *entry)
@@ -2572,7 +2572,7 @@ read_sizes_entry (GVariant *entry,
* the "ostree.sizes" metadata, a %G_IO_ERROR_NOT_FOUND error will be
* returned.
*
- * Since: 2019.7
+ * Since: 2020.1
*/
gboolean
ostree_commit_get_object_sizes (GVariant *commit_variant,
diff --git a/src/libostree/ostree-core.h b/src/libostree/ostree-core.h
index 10601123..540f3232 100644
--- a/src/libostree/ostree-core.h
+++ b/src/libostree/ostree-core.h
@@ -531,7 +531,7 @@ gchar * ostree_commit_get_content_checksum (GVariant *commit_variant);
* Structure representing an entry in the "ostree.sizes" commit metadata. Each
* entry corresponds to an object in the associated commit.
*
- * Since: 2019.5
+ * Since: 2020.1
*/
typedef struct {
gchar *checksum;
diff --git a/src/libostree/ostree-gpg-verify-result.h b/src/libostree/ostree-gpg-verify-result.h
index f71ab981..6f51ce8a 100644
--- a/src/libostree/ostree-gpg-verify-result.h
+++ b/src/libostree/ostree-gpg-verify-result.h
@@ -159,11 +159,11 @@ gboolean ostree_gpg_verify_result_require_valid_signature (OstreeGpgVerifyResult
* @OSTREE_GPG_ERROR_NO_SIGNATURE: A signature was expected, but not found.
* @OSTREE_GPG_ERROR_INVALID_SIGNATURE: A signature was malformed.
* @OSTREE_GPG_ERROR_MISSING_KEY: A signature was found, but was created with a key not in the configured keyrings.
- * @OSTREE_GPG_ERROR_EXPIRED_SIGNATURE: A signature was expired. Since: 2019.7.
+ * @OSTREE_GPG_ERROR_EXPIRED_SIGNATURE: A signature was expired. Since: 2020.1.
* @OSTREE_GPG_ERROR_EXPIRED_KEY: A signature was found, but the key used to
- * sign it has expired. Since: 2019.7.
+ * sign it has expired. Since: 2020.1.
* @OSTREE_GPG_ERROR_REVOKED_KEY: A signature was found, but the key used to
- * sign it has been revoked. Since: 2019.7.
+ * sign it has been revoked. Since: 2020.1.
*
* Errors returned by signature creation and verification operations in OSTree.
* These may be returned by any API which creates or verifies signatures.
diff --git a/src/libostree/ostree-sysroot.c b/src/libostree/ostree-sysroot.c
index 23a06975..55a61014 100644
--- a/src/libostree/ostree-sysroot.c
+++ b/src/libostree/ostree-sysroot.c
@@ -242,7 +242,7 @@ ostree_sysroot_new_default (void)
* If you invoke this function, it must be before ostree_sysroot_load(); it may
* be invoked before or after ostree_sysroot_initialize().
*
- * Since: 2019.7
+ * Since: 2020.1
*/
void
ostree_sysroot_set_mount_namespace_in_use (OstreeSysroot *self)
@@ -341,7 +341,7 @@ ostree_sysroot_get_fd (OstreeSysroot *self)
* Can only be invoked after `ostree_sysroot_initialize()`.
*
* Returns: %TRUE iff the sysroot points to a booted deployment
- * Since: 2019.7
+ * Since: 2020.1
*/
gboolean
ostree_sysroot_is_booted (OstreeSysroot *self)
@@ -890,7 +890,7 @@ ensure_repo (OstreeSysroot *self,
* It is not necessary to call this function if ostree_sysroot_load() is
* invoked.
*
- * Since: 2019.7
+ * Since: 2020.1
*/
gboolean
ostree_sysroot_initialize (OstreeSysroot *self,