From afd4694f711faeebe35daca393f121c5940292c9 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Fri, 9 Mar 2018 15:42:29 -0500 Subject: [PATCH] Release version 1.1 - Adds support for handling modulemd-defaults YAML documents - Adds peek()/dup() routines to all object properties - Adds Modulemd.Module.dup_nsvc() to retrieve the canonical form of the unique module identifier. - Adds support for boolean types in the XMD section Fixes: https://github.com/fedora-modularity/libmodulemd/issues/19 Signed-off-by: Stephen Gallagher --- README.md | 2 +- meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 42ef006b1..6a70c7acc 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ project. Following is example code how to do that: ``` import gi -gi.require_version('Modulemd', '1.0') +gi.require_version('Modulemd', '1.1') from gi.repository import Modulemd help(Modulemd.Module) ``` diff --git a/meson.build b/meson.build index 3fd80a57f..9d17804dd 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('modulemd', 'c', - version : '1.0.4', + version : '1.1.0', default_options : [ 'buildtype=debugoptimized', 'c_std=c11',