summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS41
-rw-r--r--configure.ac4
2 files changed, 43 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 65958fc..f7f4d4f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,44 @@
+Version 0.1.4
+~~~~~~~~~~~~~
+Released: 2014-04-25
+
+Notes:
+ - This release adds a utility 'appstream-util' that can do simple operations
+ on AppStream metadata including generating status pages or converting the
+ metadata from one version to another.
+
+New Features:
+ - Add AsProblem to report non-critical problems with metadata
+ - Add as_app_get_metadata_license()
+ - Add as_app_get_source_kind()
+ - Add as_app_get_update_contact()
+ - Add as_app_subsume_full()
+ - Add as_app_validate() to validate AppStream and AppData files
+ - Add as_node_reflow_text() to reflow XML text properly
+ - Add as_node_set_name() internal method
+ - Add as_store_get_apps_by_metadata()
+ - Add as_util_get_possible_kudos()
+ - Add a flag to as_node_to_xml() so it can process all children
+ - Add a 'html-status' command to appstream-util
+ - Add a 'non-package-yaml' command to appstream-util
+ - Add a 'validate' command to appstream-util
+ - Parse AppData files when using as_app_parse_file()
+ - Read AppStream metadata from the per-machine location
+
+Bugfixes:
+ - Allow writing AppStream entries with an unknown type
+ - Do not add a 'type' attribute if the component type is unknown
+ - Do not crash if an AppStream entry has no ID
+ - Do not save metadata keys with an 'x-test' locale
+ - Do not try to parse non-application tags as applicatons
+ - Do not write xml:lang key versions when the same as the 'C' version
+ - Return -1 from as_app_get_language() if the language is not found
+ - Sort the application languages by name so they are predictable
+ - Support <screenshot> sections without <image>'s
+ - Support the AppStream 0.6.1 priority attribute
+ - Support translated <ul> and <ol> tags when normalizing
+ - When adding a duplicate AppStream application merge the entries
+
Version 0.1.3
~~~~~~~~~~~~~
Released: 2014-04-10
diff --git a/configure.ac b/configure.ac
index 890a67a..c5dacd8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -44,9 +44,9 @@ m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
# - If the interface is the same as the previous version, but bugs are
# fixed, change:
# REVISION += 1
-LT_CURRENT=4
+LT_CURRENT=5
LT_REVISION=0
-LT_AGE=3
+LT_AGE=4
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
AC_SUBST(LT_AGE)