summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libsmartcols/docs/libsmartcols-docs.xml4
-rw-r--r--libsmartcols/src/column.c2
-rw-r--r--libsmartcols/src/table.c6
3 files changed, 12 insertions, 0 deletions
diff --git a/libsmartcols/docs/libsmartcols-docs.xml b/libsmartcols/docs/libsmartcols-docs.xml
index e4b6a1353..b8e02242a 100644
--- a/libsmartcols/docs/libsmartcols-docs.xml
+++ b/libsmartcols/docs/libsmartcols-docs.xml
@@ -49,6 +49,10 @@ available from ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
<title>API Index</title>
<xi:include href="xml/api-index-full.xml"><xi:fallback /></xi:include>
</index>
+ <index role="2.27">
+ <title>Index of new symbols in 2.27</title>
+ <xi:include href="xml/api-index-2.27.xml"><xi:fallback /></xi:include>
+ </index>
<index role="2.28">
<title>Index of new symbols in 2.28</title>
<xi:include href="xml/api-index-2.28.xml"><xi:fallback /></xi:include>
diff --git a/libsmartcols/src/column.c b/libsmartcols/src/column.c
index b31b39063..a01c0b599 100644
--- a/libsmartcols/src/column.c
+++ b/libsmartcols/src/column.c
@@ -272,6 +272,8 @@ int scols_column_set_cmpfunc(struct libscols_column *cl,
* Gets the value of @cl's flag hidden.
*
* Returns: hidden flag value, negative value in case of an error.
+ *
+ * Since: 2.27
*/
int scols_column_is_hidden(struct libscols_column *cl)
{
diff --git a/libsmartcols/src/table.c b/libsmartcols/src/table.c
index a2b8fbe25..d5b5e3e3a 100644
--- a/libsmartcols/src/table.c
+++ b/libsmartcols/src/table.c
@@ -104,6 +104,8 @@ void scols_unref_table(struct libscols_table *tb)
* The table name is used for example for JSON top level object name.
*
* Returns: 0, a negative number in case of an error.
+ *
+ * Since: 2.27
*/
int scols_table_set_name(struct libscols_table *tb, const char *name)
{
@@ -834,6 +836,8 @@ int scols_table_enable_raw(struct libscols_table *tb, int enable)
* (export, raw, JSON, ...) are mutually exclusive.
*
* Returns: 0 on success, negative number in case of an error.
+ *
+ * Since: 2.27
*/
int scols_table_enable_json(struct libscols_table *tb, int enable)
{
@@ -1024,6 +1028,8 @@ int scols_table_is_raw(struct libscols_table *tb)
* @tb: table
*
* Returns: 1 if JSON output format is enabled.
+ *
+ * Since: 2.27
*/
int scols_table_is_json(struct libscols_table *tb)
{