diff --git a/build.pro b/build.pro
index 2ca840cbd..1fea42f3b 100644
--- a/build.pro
+++ b/build.pro
@@ -4,15 +4,16 @@
 #
 # This is RSS Guard compilation script for qmake.
 #
-# Usage:
-#   a) DEBUG build for testing. (out of source build type)
-#     cd ../build-dir
+# Usage (out of source build type, we have two side by side folders:
+# empty "build-dir" and RSS Guard repository "rssguard-dir"):
+#   a) DEBUG build for testing.
+#     cd build-dir
 #     qmake ../rssguard-dir/build.pro -r CONFIG+=debug PREFIX=./usr
 #     make
 #     make install
 #
-#   b) RELEASE build for production use. (out of source build type)
-#     cd ../build-dir
+#   b) RELEASE build for production use.
+#     cd build-dir
 #     qmake ../rssguard-dir/build.pro -r CONFIG+=release PREFIX=./usr
 #     make
 #     make install
@@ -24,7 +25,9 @@
 #                   value of this variable is tweaked automatically.
 #   PREFIX - specifies base folder to which files are copied during "make install"
 #            step, defaults to "$$OUT_PWD/usr" on Linux and to "$$OUT_PWD/app" on Windows. Behavior
-#            of this variable can be mimicked with $INSTALL_ROOT variable on Linux.
+#            of this variable can be mimicked with $INSTALL_ROOT variable on Linux. Note that
+#            RSS Guard's installation is automatically relocatable, in other words, no
+#            absolute OS-dependent paths are used.
 #
 # Other information:
 #   - supports Windows, Linux, Mac OS X, Android,
diff --git a/pri/vars.pri b/pri/vars.pri
index cb9e61fde..fdc25daa4 100644
--- a/pri/vars.pri
+++ b/pri/vars.pri
@@ -4,7 +4,7 @@ APP_REVERSE_NAME              = "com.github.rssguard"
 APP_LOW_H_NAME                = ".rssguard"
 APP_AUTHOR                    = "Martin Rotter"
 APP_COPYRIGHT                 = "(C) 2011-2020 $$APP_AUTHOR"
-APP_VERSION                   = "3.7.1"
+APP_VERSION                   = "3.7.2"
 APP_LONG_NAME                 = "$$APP_NAME $$APP_VERSION"
 APP_EMAIL                     = "rotter.martinos@gmail.com"
 APP_URL                       = "https://github.com/martinrotter/rssguard"
diff --git a/resources/text/CHANGELOG b/resources/text/CHANGELOG
index bc0157820..1965401ff 100644
--- a/resources/text/CHANGELOG
+++ b/resources/text/CHANGELOG
@@ -1,3 +1,16 @@
+3.7.2
+—————
+
+Added:
+▪ Parent item/folder in add category/feed dialog is now correctly preselected according
+  to current feed's list selection. (#84)
+▪ Icons of parent item/folder are now correctly displayed in add feed/category dialogs.
+▪ Ability to update only feeds with custom auto-update policy set. (#88)
+▪ Enhanced feed's list context menus, now displays "Add feed/category here".
+
+Fixed/changed:
+▪ Fixed build on ARM machines.
+
 3.7.1
 —————