You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by al...@apache.org on 2017/03/31 10:59:28 UTC

[1/2] mesos git commit: Augmented release guide with GPG goodies and a formatting reminder.

Repository: mesos
Updated Branches:
  refs/heads/master 1a1fa95d0 -> 07d973936


Augmented release guide with GPG goodies and a formatting reminder.

Review: https://reviews.apache.org/r/58101


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/aa3409b6
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/aa3409b6
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/aa3409b6

Branch: refs/heads/master
Commit: aa3409b6cb4894008f7b4d511a847335c92d4aa7
Parents: 1a1fa95
Author: Alexander Rukletsov <al...@apache.org>
Authored: Fri Mar 31 11:37:21 2017 +0200
Committer: Alexander Rukletsov <al...@apache.org>
Committed: Fri Mar 31 12:47:45 2017 +0200

----------------------------------------------------------------------
 docs/release-guide.md | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/aa3409b6/docs/release-guide.md
----------------------------------------------------------------------
diff --git a/docs/release-guide.md b/docs/release-guide.md
index b32c988..f333d51 100644
--- a/docs/release-guide.md
+++ b/docs/release-guide.md
@@ -51,7 +51,8 @@ This guide describes the process of doing an official release of Mesos.
           </servers>
         </settings>
 
-6. Use `gpg-agent` to avoid typing your passphrase repeatedly.
+6. Use `gpg-agent` to avoid typing your passphrase repeatedly:<br>
+   `export GPG_TTY="$(tty)" && eval $(gpg-agent --daemon)`
 
 
 ## Preparation
@@ -111,7 +112,8 @@ This guide describes the process of doing an official release of Mesos.
    pick onto the release branch.
 
 4. Ensure version in `configure.ac` and `CMakeLists.txt` is correctly set for
-   the release.
+   the release. Do not forget to remove "(WIP)" suffix from the release notes'
+   title.
 
 5. Run `make && support/generate-endpoint-help.py` and commit any resulting
    changes.


[2/2] mesos git commit: Replaced
tags with formatting in release guide for consistency.

Posted by al...@apache.org.
Replaced <br> tags with formatting in release guide for consistency.

Review: https://reviews.apache.org/r/58103


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/07d97393
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/07d97393
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/07d97393

Branch: refs/heads/master
Commit: 07d9739364373913b542cd0d944acc85dfb65e74
Parents: aa3409b
Author: Alexander Rukletsov <al...@apache.org>
Authored: Fri Mar 31 12:47:34 2017 +0200
Committer: Alexander Rukletsov <al...@apache.org>
Committed: Fri Mar 31 12:48:25 2017 +0200

----------------------------------------------------------------------
 docs/release-guide.md | 20 ++++++++++++--------
 1 file changed, 12 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/07d97393/docs/release-guide.md
----------------------------------------------------------------------
diff --git a/docs/release-guide.md b/docs/release-guide.md
index f333d51..fa60728 100644
--- a/docs/release-guide.md
+++ b/docs/release-guide.md
@@ -14,14 +14,17 @@ This guide describes the process of doing an official release of Mesos.
 
 2. Add your GPG public key to the Apache Mesos dist repository in the KEYS file.
 
-   * Fetch the svn repository:<br>
-     `svn co https://dist.apache.org/repos/dist/release/mesos`
+   * Fetch the svn repository:
 
-   * Append your public key using one of methods described in KEYS, e.g.:<br>
-     `(gpg --list-sigs <your name> && gpg --armor --export <your name>) >> KEYS`.
+          $ svn co https://dist.apache.org/repos/dist/release/mesos
 
-   * Push the commit:<br>
-     `svn ci`
+   * Append your public key using one of methods described in KEYS, e.g.:
+
+          $ (gpg --list-sigs <your name> && gpg --armor --export <your name>) >> KEYS
+
+   * Push the commit:
+
+          $ svn ci
 
 3. Submit your GPG public key to a keyserver, e.g.,
    [MIT PGP Public Key Server](https://pgp.mit.edu).
@@ -51,8 +54,9 @@ This guide describes the process of doing an official release of Mesos.
           </servers>
         </settings>
 
-6. Use `gpg-agent` to avoid typing your passphrase repeatedly:<br>
-   `export GPG_TTY="$(tty)" && eval $(gpg-agent --daemon)`
+6. Use `gpg-agent` to avoid typing your passphrase repeatedly:
+
+        $ export GPG_TTY="$(tty)" && eval $(gpg-agent --daemon)
 
 
 ## Preparation