aboutsummaryrefslogtreecommitdiffstats
path: root/DEVELOPING
diff options
context:
space:
mode:
authorBrian Dolbec <dolsen@gentoo.org>2014-01-05 15:11:32 -0800
committerBrian Dolbec <dolsen@gentoo.org>2014-01-05 15:15:41 -0800
commit3f90b5008ab92617460a7f4ca64c5581db2befe5 (patch)
tree4a9d6a6b927f2724d2b04d9443198154287a900e /DEVELOPING
parentmkrelease: add a --runtests shortcut (diff)
downloadgentoo-portage-3f90b5008ab92617460a7f4ca64c5581db2befe5.tar.xz
gentoo-portage-3f90b5008ab92617460a7f4ca64c5581db2befe5.zip
Add updating the NEWS, RELEASE_NOTES files to the release process.
Diffstat (limited to 'DEVELOPING')
-rw-r--r--DEVELOPING9
1 files changed, 6 insertions, 3 deletions
diff --git a/DEVELOPING b/DEVELOPING
index b704a50fb92c..a2c9ae154b3e 100644
--- a/DEVELOPING
+++ b/DEVELOPING
@@ -57,7 +57,7 @@ should be replaced with:
if foo is not None:
-Is not does a reference comparison (address1 = address2 basically) and
+Is not does a reference comparison (address1 = address2 basically) and
the == forces a by value compare (with __eq__())
Dict Lookups
@@ -139,7 +139,7 @@ NO:
Try not to import large numbers of things into the namespace of a module.
I realize this is done all over the place in current code but it really makes it
-a pain to do code reflection when the namespace is cluttered with identifiers
+a pain to do code reflection when the namespace is cluttered with identifiers
from other modules.
YES:
@@ -161,10 +161,13 @@ somewhat annoying because the import line needs to be modified when functions
are needed and often unused functions are left in the import line until someone
comes along with a linter to clean up (does not happen often).
+
Releases
--------
-First create a git tag for this release:
+First update the NEWS and RELEASE-NOTES files and commit.
+
+Second create a git tag for this release:
git tag v2.2.8
Then create the tarball and run the tests: