summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2016-05-17 18:53:34 +0200
committerAlexander Larsson <alexl@redhat.com>2016-05-17 18:53:34 +0200
commitb3853f45afd16643443ce78c104b2a85fd2daf1e (patch)
treebac8e57ca5cd09cb4f4b795ea50e95b2b1eefd52
parent8397a15a3b168bf266d3e027a6bf6d0080cf2fc3 (diff)
downloadxdg-app-b3853f45afd16643443ce78c104b2a85fd2daf1e.tar.gz
Update version to 0.6.0
-rw-r--r--NEWS35
-rw-r--r--configure.ac6
2 files changed, 38 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 9ace040..b3fda24 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,38 @@
+Major changes in 0.6.0
+======================
+
+Renamed from xdg-app to Flatpak. Existing repositories should keep
+working, and locally user installed apps/runtime will be migrated
+automatically. However, there are some things that you have to be
+aware of:
+ * The command names are now flatpak/flatpak-builder
+ * System-wide installed apps/runtimes need to be reinstalled
+ * flatpak-builder uses a ".flatpak-builder" subdirectory instead
+ of ".xdg-app-builder".
+ * The bus name and interface name for the permission
+ store is changed, it was in org.freedesktop.XdgApp, but is
+ now in org.freedesktop.impl.portal.DesktopPortal.
+ * The installation migration is a one-time operation so you can't
+ go back to xdg-app after updating.
+ * The library API (and name) changed due to the rename.
+
+Other changes:
+ * Flatpak now hard-requires ostree 2016.15
+ * Switch from using xdg-app-helper to an included version of bubblewrap:
+ https://github.com/projectatomic/bubblewrap
+ * Added a policykit-based system helper that allows you to authenticate
+ via polkit to install into the system repository.
+ * Added an experimental command to export/import applications and runtimes
+ as an OCI tarball.
+ * builder: Fix creation of locale extensions if there was no locale data in the
+ build.
+ * Its now possible to disable/enable configured remotes.
+ * A lot of new tests where added, and we now support installed tests.
+ * builder now has an optional --arch argument for multiarch building.
+ * Builder modules can be disabled with "disabled": true.
+ * Using --filesystem=/tmp now hides the system X11 sockets.
+
+
Major changes in 0.5.2
======================
diff --git a/configure.ac b/configure.ac
index 1c00be9..66c3ea3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -14,9 +14,9 @@ AC_PREREQ([2.63])
# on the unstable (ie master), interface age = 0
m4_define([flatpak_major_version], [0])
-m4_define([flatpak_minor_version], [5])
-m4_define([flatpak_micro_version], [2])
-m4_define([flatpak_interface_age], [2])
+m4_define([flatpak_minor_version], [6])
+m4_define([flatpak_micro_version], [0])
+m4_define([flatpak_interface_age], [0])
m4_define([flatpak_binary_age],
[m4_eval(10000 * flatpak_major_version + 100 * flatpak_minor_version + flatpak_micro_version)])
m4_define([flatpak_version],