From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2EE4315808D for ; Fri, 10 Sep 2021 06:03:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17E59E08A2; Fri, 10 Sep 2021 06:03:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 00245E08A2 for ; Fri, 10 Sep 2021 06:03:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ADBB0340DBA for ; Fri, 10 Sep 2021 06:03:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 177F99E for ; Fri, 10 Sep 2021 06:03:36 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1631253727.7af41cc626a146d370cbb67f4f72f64a552062de.mgorny@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: NEWS setup.py X-VCS-Directories: / X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7af41cc626a146d370cbb67f4f72f64a552062de X-VCS-Branch: master Date: Fri, 10 Sep 2021 06:03:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c26190ea-6a8c-4dea-aa81-73b2dc6ce654 X-Archives-Hash: 0b3ee85cf22393e26bf0bbd05a525ece commit: 7af41cc626a146d370cbb67f4f72f64a552062de Author: Michał Górny gentoo org> AuthorDate: Fri Sep 10 06:02:07 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Sep 10 06:02:07 2021 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=7af41cc6 Prepare for 3.0.23 release Signed-off-by: Michał Górny gentoo.org> NEWS | 9 +++++++++ setup.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 671797c50..7b20c5e9a 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,14 @@ News (mainly features/major bug fixes) +portage-3.0.23 +-------------- +* enable autogroup scheduling with pid-sandbox if possible. This should + make the kernel respect niceness better. +* add support conf-update.d hooks. +* display all preserved libraries with --verbose. +* restore QA warnings when EXPORT_FUNCTIONS is called before inherit. +* catch more setuptools warnings via the respective QA check. + portage-3.0.22 -------------- * USE flags are now sorted with respect to numerical segments in emerge diff --git a/setup.py b/setup.py index 37dd1decb..054f71b12 100755 --- a/setup.py +++ b/setup.py @@ -783,7 +783,7 @@ def get_data_files(regular_files, venv_files): setup( name = 'portage', - version = '3.0.22', + version = '3.0.23', url = 'https://wiki.gentoo.org/wiki/Project:Portage', project_urls = { 'Release Notes': 'https://gitweb.gentoo.org/proj/portage.git/plain/RELEASE-NOTES',