You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2015/09/01 23:44:49 UTC

[8/9] isis git commit: ISIS-1052: further updates to release docs.

ISIS-1052: further updates to release docs.


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

Branch: refs/heads/master
Commit: 45c7492238d7846541a67135b0fb8e885317cbbf
Parents: eb1d2f4
Author: Dan Haywood <da...@haywood-associates.co.uk>
Authored: Tue Sep 1 22:24:50 2015 +0100
Committer: Dan Haywood <da...@haywood-associates.co.uk>
Committed: Tue Sep 1 22:24:50 2015 +0100

----------------------------------------------------------------------
 .../_cg_committers_post-release-successful.adoc | 24 +++++++++-----------
 1 file changed, 11 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/45c74922/adocs/documentation/src/main/asciidoc/guides/_cg_committers_post-release-successful.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_cg_committers_post-release-successful.adoc b/adocs/documentation/src/main/asciidoc/guides/_cg_committers_post-release-successful.adoc
index 73856b2..db579cf 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_cg_committers_post-release-successful.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_cg_committers_post-release-successful.adoc
@@ -159,7 +159,7 @@ For example:
 
 [source,bash]
 ----
-sh upd.sh 1.8.0 1.9.0
+sh upd.sh 1.9.0 1.10.0
 ----
 
 The script downloads the artefacts from the Nexus release repository, adds the artefacts to subsversion and deletes the previous version.
@@ -182,7 +182,7 @@ From the root directory, generate the release notes for the current release, in
 
 [source,bash]
 ----
-sh scripts/jira-release-notes.sh ISIS 1.9.0 > /tmp/1
+sh scripts/jira-release-notes.sh ISIS 1.10.0 > /tmp/1
 ----
 
 
@@ -235,19 +235,17 @@ For example, for a release of Apache Isis Core, use the following subject:
 
 [source,bash]
 ----
-[ANN] Apache Isis version 1.9.0 Released
+[ANN] Apache Isis version 1.10.0 Released
 ----
 
 And use the following body (summarizing the main points as required):
 
 [source]
 ----
-The Apache Isis team is pleased to announce the release of:
-* Apache Isis Core version 1.9.0
-* SimpleApp Archetype 1.9.0
+The Apache Isis team is pleased to announce the release of Apache Isis v1.10.0.
 
 New features in this release include:
-- ...
+* ...
 
 Full release notes are available on the Apache Isis website at [1].
 
@@ -261,9 +259,9 @@ Enjoy!
 
 --The Apache Isis team
 
-[1] http://isis.apache.org/core/release-notes/isis-1.9.0.html
+[1] http://isis.apache.org/release-notes.html#r1.10.0
 [2] http://search.maven.org
-[3] http://isis.apache.org/download.html
+[3] http://isis.apache.org/downloads.html
 ----
 
 
@@ -283,11 +281,11 @@ Because we release from a branch, the changes made in the branch (changes to `po
 
 [source,bash]
 ----
-git checkout master                   # update master with latest
+git checkout master                           # update master with latest
 git pull
-git merge isis-1.9.0                  # merge branch onto master
-git branch -d isis-1.9.0              # branch no longer needed
-git push origin --delete isis-1.9.0   # remote branch no longer needed
+git merge release-1.10.0-RC1                  # merge branch onto master
+git branch -d release-1.10.0-RC1              # branch no longer needed
+git push origin --delete release-1.10.0-RC1   # remote branch no longer needed
 ----