summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2022-09-16 13:07:51 +0200
committerJan Kara <jack@suse.cz>2022-09-16 13:07:51 +0200
commitb74e950cb2929f4222236e4a58d281bcc41a57d6 (patch)
tree85904480d432ac3225fc3f9c9fa277d9a7c571a0
parentd2256ac2d44b0a5be9c0b49ce4ce8e5f6821ce2a (diff)
downloadlinuxquota-b74e950cb2929f4222236e4a58d281bcc41a57d6.tar.gz
Release quota-tools 4.07
Signed-off-by: Jan Kara <jack@suse.cz>
-rw-r--r--Changelog11
-rw-r--r--configure.ac2
2 files changed, 12 insertions, 1 deletions
diff --git a/Changelog b/Changelog
index 734f00e..7fa4aa0 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,14 @@
+Changes in quota-tools from 4.06 to 4.07
+* Fix strncpy() usage in mount option parsing (Dmitry V. Levin)
+* Fix strncat() usage in /proc path construction (Dmitry V. Levin)
+* Warn about usage of old quota files on ext4 filesystems (Jan Kara)
+* Fix initialization of sa_mask in quota_nld (Petr Písař)
+* Don't use __P() in quotactl declaration (2xsaiko)
+* Warn if kernel returns 64-bit time and we have 32-bit time_t (Dmitry V. Levin)
+* Remove unused label (Dmitry V. Levin)
+* Remove dead code from quotacheck (Petr Písař)
+* Use realloc() instead of reallocarray() (Fabrice Fontaine)
+
Changes in quota-tools from 4.05 to 4.06
* Remove quot tool (Jan Kara)
* quotacheck,quotaon: Suggest using quota feature for ext4 (Jan Kara)
diff --git a/configure.ac b/configure.ac
index 296b77a..0c36969 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6,7 +6,7 @@ AC_PREREQ([2.60])
# Version informations
# ====================
m4_define([quota_version_major],[4])
-m4_define([quota_version_minor],[06])
+m4_define([quota_version_minor],[07])
m4_define([quota_version],[quota_version_major.quota_version_minor])
# =============