Added N&N for version 1.0.5
diff --git a/index.php b/index.php
index 33dd90f..b32e2ee 100644
--- a/index.php
+++ b/index.php
@@ -84,8 +84,8 @@
      		<ul>
      		
      			<li>
-     			<b>December 4, 2014 &ndash; BPEL Designer Version 1.0.4</b> is now available.
-     			Read all about it <b><a href="/$projectShortName/whatsnew/whatsnew-1.0.4.php">in the New &amp; Noteworthy page.</a></b>.
+     			<b>May 30, 2015 &ndash; BPEL Designer Version 1.0.5</b> is now available.
+     			Read all about it <b><a href="/$projectShortName/whatsnew/whatsnew-1.0.5.php">in the New &amp; Noteworthy page.</a></b>.
      			</li>
      			
      			<li>
diff --git a/whatsnew.php b/whatsnew.php
index 500fce6..3ba8edd 100644
--- a/whatsnew.php
+++ b/whatsnew.php
@@ -36,6 +36,7 @@
 		<h1>$pageTitle</h1>
 		<h2>New &amp; Noteworthy</h2>
 		<ul>
+			<li><a href="whatsnew/whatsnew-1.0.5.php">Version 1.0.5</a>  <span class="dates">05/30/2015</span></li>			
 			<li><a href="whatsnew/whatsnew-1.0.4.php">Version 1.0.4</a>  <span class="dates">12/04/2014</span></li>			
 			<li><a href="whatsnew/whatsnew-1.0.3.php">Version 1.0.3</a>  <span class="dates">08/16/2013</span></li>			
 			<li><a href="whatsnew/whatsnew-1.0.2.php">Version 1.0.2</a>  <span class="dates">11/12/2012</span></li>
diff --git a/whatsnew/whatsnew-1.0.5.php b/whatsnew/whatsnew-1.0.5.php
new file mode 100644
index 0000000..94224a6
--- /dev/null
+++ b/whatsnew/whatsnew-1.0.5.php
@@ -0,0 +1,71 @@
+<?php  																														require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); 	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); 	$App 	= new App();	$Nav	= new Nav();	$Menu 	= new Menu();		include($App->getProjectCommon());    # All on the same line to unclutter the user's desktop'
+
+	#*****************************************************************************
+	#
+	# template.php
+	#
+	# Author: 		Denis Roy
+	# Date:			2005-06-16
+	#
+	# Description: Type your page comments here - these are not sent to the browser
+	#
+	#
+	#****************************************************************************
+	
+	#
+	# Begin: page-specific settings.  Change these. 
+	$pageTitle 		= "BPEL Designer - New & Noteworthy";
+	$pageKeywords	= "V1.0.4,BPEL,info";
+	$pageAuthor		= "Bob Brodt";
+	
+	# Add page-specific Nav bars here
+	# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
+	# include($_SERVER['DOCUMENT_ROOT'] . "/$projectShortName/items/users_menu.php");
+		
+	# End: page-specific settings
+	#
+		
+	# Paste your HTML content between the EOHTML markers!	
+	$html = <<<EOHTML
+
+<STYLE type="text/css">
+span.feature {
+	font-size: 18pt;
+	font-weight: bold;
+}
+
+span.feature:before {
+   content: counter(featureId) ". " ;
+   counter-increment: featureId;
+}
+</STYLE>
+	
+<div id="maincontent">
+	<div id="midcolumn" style="counter-reset: featureId;" >
+		<h1>$pageTitle</h1>
+		<h2>Version 1.0.5 - Service Release (May 30, 2015)</h2>
+		
+		<p>
+			This is a minor bug fix release for the following bugs:
+		</p>
+		<ul>
+			<li>
+				<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=468058">Bug 468058</a> - NPE thrown when creating Join Condition expression for ForEach activity
+			</li>
+			<li>
+				<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=461558">Bug 461558</a> - ArrayIndexOutOfBoundsException when selecting Completion tab in ForEach activity
+			</li>
+							<li>
+				<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=443182">Bug 443182</a> - Properties for ForEach activity is not displayed
+			</li>
+		</ul>
+	</div>
+</div>
+
+
+EOHTML;
+
+
+	# Generate the web page
+	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>