commit: b3e61e8cf750365bf709bb2bc51c10476fd2652d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 27 08:14:01 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Sep 27 08:14:01 2021 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=b3e61e8c
Prepare for 3.0.24 release
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
NEWS | 9 +++++++++
RELEASE-NOTES | 7 +++++++
setup.py | 2 +-
3 files changed, 17 insertions(+), 1 deletion(-)
diff --git a/NEWS b/NEWS
index 7b20c5e9a..58ccbe3fd 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,14 @@
News (mainly features/major bug fixes)
+portage-3.0.24
+--------------
+* remove doebuild(dbkey=...) support that was deprecated since 2013.
+* pass metadata internally using key=value format.
+* include INHERIT key md5-cache to match pkgcore.
+* reformat Portage code using black.
+* fix Python 3.10 deprecation warnings.
+* replace compat_coroutine use with modern async.
+
portage-3.0.23
--------------
* enable autogroup scheduling with pid-sandbox if possible. This should
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 2a471cc02..9cd45caac 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,6 +1,13 @@
Release Notes; upgrade information mainly.
Features/major bugfixes are listed in NEWS
+portage-3.0.24
+==================================
+ - Bug 814857: create a local copy of FILESDIR in order to avoid
+ leaking xattrs from user's repository
+ - Bug 811462: fix ignoring scanelf(1) exit status when generating
+ NEEDED* entries
+
portage-3.0.20
==================================
- Bug 777492: PORTAGE_NICENESS: Consider autogroup scheduling
diff --git a/setup.py b/setup.py
index 77fa0808c..a4105be68 100755
--- a/setup.py
+++ b/setup.py
@@ -805,7 +805,7 @@ def get_data_files(regular_files, venv_files):
setup(
name="portage",
- version="3.0.23",
+ version="3.0.24",
url="https://wiki.gentoo.org/wiki/Project:Portage",
project_urls={
"Release Notes":
"https://gitweb.gentoo.org/proj/portage.git/plain/RELEASE-NOTES",