Skip to content

Commit

Permalink
Release 0.6.14
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlarsson committed Nov 29, 2016
1 parent ecc3008 commit 109698c
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
31 changes: 31 additions & 0 deletions NEWS
@@ -1,3 +1,34 @@
Major changes in 0.6.14
=======================
* Update bundled bubblewrap to 0.1.4 which has some nice bugfixes.
If you are using an external bubblewrap it is recommended, but
not required to update.
* Requires OSTree 2016.14, which allows us to drop some old
workarounds.
* When installing an application system-wide, don't consider
dependencies that are installed for the user only.
* Flatpak install --from now tries to re-use existing remotes to
avoid creating unnecessary origin remotes.
* Using --filesystem=$dir when $dir is a symlink-to-directory now works.
* Using --filesystem=$file to expose unix sockets to the app is now
allowed.
* By default all the directories in ~/.var/app (except the app), as
well as ~/.local/share/flatpak are hidden in the sandbox.
* New option --filesystem=$dir:create which will create the destination
if it did not previously exist.
* --filesystem= now supports for xdg-[config|cache|data]. This
allows you access to the host versions of these xdg dirs. Additionally
if you use these with a subdirectory, like:
--filesystem=xdg-config/subdir
then that subdirectory on the host will be shared with the per-app
instance of the xdg-dir.
* Builder now correctly handles app-ids that have dashes in them.
Previously this generated invalid ids for the debuginfo and locale
extensions.
* The experimental OCI file format support was changed from creating an
OCI container to creating an OCI image.
* Fix regression where "flatpak update --appstream remotename" broke

Major changes in 0.6.13
=======================
* The command line arguments for install/update/uninstall changed
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Expand Up @@ -15,8 +15,8 @@ AC_PREREQ([2.63])

m4_define([flatpak_major_version], [0])
m4_define([flatpak_minor_version], [6])
m4_define([flatpak_micro_version], [13])
m4_define([flatpak_interface_age], [13])
m4_define([flatpak_micro_version], [14])
m4_define([flatpak_interface_age], [14])
m4_define([flatpak_binary_age],
[m4_eval(10000 * flatpak_major_version + 100 * flatpak_minor_version + flatpak_micro_version)])
m4_define([flatpak_version],
Expand Down

0 comments on commit 109698c

Please sign in to comment.