Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
Changes in 1.4.6
================

* Support specifying appstream compose URL policy with `--compose-url-policy`
* Support fetching and checking out Git LFS objects
* Add disable-lfs option to disable fetching Git LFS objects on a per source basis
* Prevent deleting current working directory, state directory or their parents with force-clean
* Create appstream ref branches in locally exported repo
* Log sdk, runtime and base versions and commits used with `--verbose`
* Pass `--no-gpg-sign` to `git commit` when committing archives inside state directory
* Pass `--no-gpg-sign` to `git am` when applying patches
* Fix the meson build with `-Dinstalled_tests=true`
* Fix the screenshot ref commit test to work offline
* Improvements to docs and CI

Changes in 1.4.5
================

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ AC_PREREQ([2.63])

m4_define([flatpak_builder_major_version], [1])
m4_define([flatpak_builder_minor_version], [4])
m4_define([flatpak_builder_micro_version], [5])
m4_define([flatpak_builder_micro_version], [6])
m4_define([flatpak_builder_version],
[flatpak_builder_major_version.flatpak_builder_minor_version.flatpak_builder_micro_version])

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project(
'c',
license: 'LGPL-2.1-or-later',
meson_version: '>= 0.56.2',
version: '1.4.5',
version: '1.4.6',
default_options: 'c_std=gnu99',
)

Expand Down