aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--doc/release-guide.txt7
2 files changed, 6 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 2768936..da8bb61 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2012-03-07 Ulrich Müller <ulm@gentoo.org>
+ * doc/release-guide.txt: Update to reflect the transition from
+ subversion to git.
+
* doc/developer-guide.txt: Remove subversion keywords and don't
use svn_date_to_version function in example module.
diff --git a/doc/release-guide.txt b/doc/release-guide.txt
index 509af4b..2a4fd64 100644
--- a/doc/release-guide.txt
+++ b/doc/release-guide.txt
@@ -12,7 +12,7 @@ configure.ac and tagging the release.
Update NEWS file with a summary of changes mentioned in ChangeLog since
the last release.
-Do a test run in trunk/. ::
+Do a test run in master. ::
$ ./autogen.bash
$ ./configure
@@ -29,12 +29,11 @@ Commit any changes you may have made in the previous steps.
Tag release. ::
$ make maintainer-clean
- $ svn copy trunk tags/release-${PV}
- $ svn commit -m "Tagged ${PV} release."
+ $ git tag --sign -m "Tagged ${PV} release." eselect-${PV}
+ $ git push
Build the final tarball. ::
- $ cd tags/release-${PV}
$ ./autogen.bash
$ ./configure
$ make dist