summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2017-09-05 16:53:11 +0200
committerJan Kara <jack@suse.cz>2017-09-05 16:53:11 +0200
commit16f31b143b41aaa50e43073fa0aadb8474820e1f (patch)
tree12cc2125d94655b9e70191333f200e494c61252d
parentf38628f0e96f508d626298a74b4aea1c7807ff33 (diff)
downloadquota-tools-16f31b143b41aaa50e43073fa0aadb8474820e1f.tar.gz
Release quota-tools 4.04v4.04
Signed-off-by: Jan Kara <jack@suse.cz>
-rw-r--r--Changelog47
-rw-r--r--configure.ac2
2 files changed, 48 insertions, 1 deletions
diff --git a/Changelog b/Changelog
index 8ae0c32..220f8f7 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,50 @@
+Changes in quota-tools from 4.03 to 4.04
+* Use TI-RPC for RPC client communication (Jan Kara)
+* rpc.rquotad: IPv6 support (Jan Kara)
+* rpc: Factor out getting of port number (Jan Kara)
+* Add support for ipv6 to good_client (Jan Kara)
+* quotacheck: Deallocate memory after direct scanning (Petr Písař)
+* quota: Return non-zero exit code when getting quota fails (Ian Chard)
+* quotaops: check return code of ftruncate and lseek calls (Dmitry V. Levin)
+* Use configure macros instead of hardcoded defaults (Dmitry V. Levin)
+* quotaops: check return code of fgets calls (Dmitry V. Levin)
+* quotaops: check setgid/setuid return code (Dmitry V. Levin)
+* quotacheck: fix ask_yn UB when fgets returns NULL (Dmitry V. Levin)
+* quotacheck: change to the directory before opening it, not after (Dmitry V. Levin)
+* Do not install quota_nld.8 when quota_nld is not installed (Dmitry V. Levin)
+* quota-tools: add missing newline to die() messages (Theodore Ts'o)
+* quotacheck: Use direct scanning also for ext4 (Jan Kara)
+* Improve detection of XFS quota interface (Jan Kara)
+* quotaon: Improve reporting of quota state (Jan Kara)
+* quota: fix coredump if projid file does not exist (Wang Shilong)
+* quotacheck: Fix buggy error check of read(2) (Jan Kara)
+* repquota: use the same whitespace for quotaio_meta as quotaio_v2 (Theodore Ts'o)
+* repquota: Add project quota support (Jan Kara)
+* edquota: Project quota support (Jan Kara)
+* setquota: Project quota support (Jan Kara)
+* quota: Add project quota support (Jan Kara)
+* quotasync: Add project quota support (Jan Kara)
+* quotaon: Add project quota support (Jan Kara)
+* Add support for project quota into generic code (Jan Kara)
+* Fix warnings due to missing stdlib.h (Jan Kara)
+* Support systems which do not have nl_langinfo() (Theodore Ts'o)
+* Provide fallback definitions for MNTTYPE_NFS and MNTTYPE_NOAUTO (Theodore Ts'o)
+* Use NGROUPS_MAX instead of NGROUPS (Theodore Ts'o)
+* Allow building on systems that do not have rpc header files (Theodore Ts'o)
+* Update the gitignore file to ignore additional generated files (Theodore Ts'o)
+* Don't build rpc.rquotad when --disable-rpc was requested. (Lars Wendler)
+* Add support for scanning using Q_XGETNEXTQUOTA (Jan Kara)
+* Scan dquots using Q_GETNEXTQUOTA (Jan Kara)
+* Don't link all binaries with ldap library (Jan Kara)
+* repquota: -F option takes an arg (Eric Sandeen)
+* Set -fPIC and -pie as default params when building (Tomáš Chvátal)
+* Do not accidentaly override commandline passed CFLAGS. (Tomáš Chvátal)
+* Respect the docdir declaration and do not override. (Tomáš Chvátal)
+* Print explicitely disabled options properly (Jan Kara)
+* Distribute ldap-scripts directory too (Tomáš Chvátal)
+* Fix build with disabled ldap (Jan Kara)
+* Fix whitespace in configure.ac (Tomáš Chvátal)
+
Changes in quota-tools from 4.02 to 4.03
* Revive Changelog (Jan Kara)
* Update release script to work with new build system (Jan Kara)
diff --git a/configure.ac b/configure.ac
index 76d2cdd..04eabe4 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],[03])
+m4_define([quota_version_minor],[04])
m4_define([quota_version],[quota_version_major.quota_version_minor])
# =============