aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2020-07-18 22:04:33 -0700
committerZac Medico <zmedico@gentoo.org>2020-07-18 22:04:48 -0700
commit445212544fceed21b24dff96701e6c34b80de923 (patch)
tree198adcb24a5f9da590e40cae5773193d7574d256
parentForkProcess: replace os.fork with multiprocessing.Process (bug 730192) (diff)
downloadportage-445212544fceed21b24dff96701e6c34b80de923.tar.gz
portage-445212544fceed21b24dff96701e6c34b80de923.tar.bz2
portage-445212544fceed21b24dff96701e6c34b80de923.zip
Updates for portage-3.0.0 releaseportage-3.0.0
Signed-off-by: Zac Medico <zmedico@gentoo.org>
-rw-r--r--NEWS4
-rw-r--r--RELEASE-NOTES13
-rwxr-xr-xsetup.py2
3 files changed, 18 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index fdaba51d6..1d609bd31 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,9 @@
News (mainly features/major bug fixes)
+portage-3.0.0
+--------------
+* Dropped support for Python 2.x.
+
portage-2.3.101
--------------
* The new PORTAGE_LOG_FILTER_FILE_CMD make.conf(5) variable specifies a
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 85a16a4e3..3229891cf 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,6 +1,19 @@
Release Notes; upgrade information mainly.
Features/major bugfixes are listed in NEWS
+portage-3.0.0
+==================================
+* Bug Fixes:
+ - Bug 703698 Improve repos.conf handling of boolean settings
+ - Bug 721516 ecompress complains about compressed files that have
+ been excluded by docompress -x
+ - Bug 729852 Set XTerm titles for konsole
+ - Bug 731114 Drop support for python2.7
+ - Bug 731246 man ebuild(5) has incorrect example of $P and $PN
+ - Bug 732378 Use lru_cache for use_reduce, vercmp, and catpkgsplit
+ - Bug 733154 List of ignored warnings in .desktop files should be
+ updated for compatibility with >=desktop-file-utils-0.25
+
portage-2.3.103
==================================
* Bug Fixes:
diff --git a/setup.py b/setup.py
index a3a026203..08a3a6834 100755
--- a/setup.py
+++ b/setup.py
@@ -657,7 +657,7 @@ class build_ext(_build_ext):
setup(
name = 'portage',
- version = '2.3.103',
+ version = '3.0.0',
url = 'https://wiki.gentoo.org/wiki/Project:Portage',
author = 'Gentoo Portage Development Team',
author_email = 'dev-portage@gentoo.org',