1.9.1 released
diff --git a/doc/released/README-191.html b/doc/released/README-191.html
new file mode 100644
index 0000000..4c891d2
--- /dev/null
+++ b/doc/released/README-191.html
@@ -0,0 +1,52 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
+<html> <head>
+<title>AspectJ 1.9.1 Readme</title>
+<style type="text/css">
+<!--
+  P   { margin-left:  20px; }
+  PRE { margin-left:  20px; }
+  LI  { margin-left:  20px; }
+  H4  { margin-left:  20px; }
+  H3  { margin-left:  10px; }
+-->
+</style>
+</head>
+
+<body>
+<div align="right"><small>
+&copy; Copyright 2018 Contributors.
+All rights reserved.
+</small></div>
+<p>The full list of resolved issues in 1.9.1 is available 
+<a href="https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&f0=OP&f1=OP&f3=CP&f4=CP&j1=OR&list_id=16866879&product=AspectJ&query_format=advanced&target_milestone=1.9.1">here</a></h2>.</p>
+
+<h1>AspectJ 1.9.1</h1>
+
+<h4>Java 10 support</h4>
+<p>AspectJ has updated to a recent JDT compiler version (commit <tt>#abe06abe4ce1</tt> - 9-Apr-2018). With this update it
+now supports Java10.  This means you can use the 'var' support. A simple example of combining var with
+an aspect:</p>
+<p>
+<pre><code>
+public class Code3 {
+	public static void main(String []argv) {
+		var x = "hello";
+		System.out.println(x.getClass());
+	}
+}
+
+aspect X {
+	before(): call(* *.getClass()) && target(String) {
+		System.out.println(thisJoinPointStaticPart);
+	}
+}
+</code></pre>
+</p>
+<p>Available: 1.9.1 available 20-Apr-2018</p>
+
+<br><br>
+
+
+<!-- ============================== -->  
+</body>
+</html>
diff --git a/downloads.php b/downloads.php
index 0e3c2be..a126246 100644
--- a/downloads.php
+++ b/downloads.php
@@ -159,6 +159,25 @@
   <h3 id="stable_release">Latest Stable Release</h3>
   <ul>
     <li>
+    <b>AspectJ 1.9.1, Released 20 Apr 2018</b>
+ 	<table border="0" cellspacing="0" cellpadding="0" width="100%">
+    <tr>
+      <td><ul>AspectJ compiler, browser, documentation tool, Ant tasks, and documentation.</ul></td>
+      <td width="30%" align="right">
+          <a href="http://www.eclipse.org/downloads/download.php?file=/tools/aspectj/aspectj-1.9.1.jar">aspectj-1.9.1.jar</a> (~17M)<br>
+          <a href="http://www.eclipse.org/downloads/download.php?file=/tools/aspectj/aspectj-1.9.1-src.jar">aspectj-1.9.1-src.jar</a>
+      </td>
+    </tr>
+    </table>
+  </li>
+  </ul>
+</div>
+
+  <!-- ============ ASPECTJ MILESTONES -->
+  <div class="homeitem3col">
+  <h3 id="milestones">AspectJ 8</h3>
+  <ul>
+    <li>
     <b>AspectJ 1.9.0, Released 2 Apr 2018</b>
  	<table border="0" cellspacing="0" cellpadding="0" width="100%">
     <tr>
@@ -171,11 +190,6 @@
     </table>
   </li>
   </ul>
-</div>
-
-  <!-- ============ ASPECTJ MILESTONES -->
-  <div class="homeitem3col">
-  <h3 id="milestones">AspectJ 8</h3>
   <ul>
     <li>
     <b>AspectJ 1.8.13, Released 15 Nov 2017</b>
diff --git a/index.php b/index.php
index 503013e..059d4fc 100644
--- a/index.php
+++ b/index.php
@@ -87,6 +87,12 @@
 		<div class="homeitem">
 			<h3>News and Events</h3>
 
+<li>AspectJ 1.9.1 is <a href="downloads.php">available for download</a>.
+See the <a href="doc/released/README-191.html">readme</a>
+for more information.
+<br><div align="right"><span class="dates"><i>posted 20-Apr-18</i></span></div>
+</li>
+
 <li>AspectJ 1.9.0 is <a href="downloads.php">available for download</a>.
 See the <a href="doc/released/README-190.html">readme</a>
 for more information.