1.9.5 release
diff --git a/doc/released/README-195.html b/doc/released/README-195.html
new file mode 100644
index 0000000..ff55886
--- /dev/null
+++ b/doc/released/README-195.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
+<html> <head>
+<title>AspectJ 1.9.5 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 2019 Contributors.
+All rights reserved.
+</small></div>
+<h1>AspectJ 1.9.5</h1>
+<p>The full list of resolved issues in 1.9.5 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.5">here</a></h2>.</p>
+
+<p>AspectJ 1.9.5 supports Java13. Java13 introduces text blocks, but you must activate support for that via 
+an <tt>--enable-preview</tt> flag when using the compiler and attempting to run the resultant classes:
+
+Here is <tt>Code.java</tt>:
+<pre><code>
+=======8<=========
+public class Code {
+  public static void main(String[] argv) {
+  }
+
+  static aspect X {
+    before(): execution(* Code.main(..)) {
+	System.out.println(
+"""
+This
+is
+on
+multiple
+lines
+"""
+);
+    }
+  }
+
+}
+=========8<=========
+</code></pre>
+
+<p>Compile it with:
+<pre><code>
+$ ajc --enable-preview -13 Code.java
+</code></pre>
+
+<p>Now run it:
+<pre><code>
+$ java --enable-preview Code
+This
+is
+on
+multiple
+lines
+</code></pre>
+
+<p>Available: 1.9.5 available 28-Nov-2019</p>
+
+<br><br>
+
+
+<!-- ============================== -->  
+</body>
+</html>
diff --git a/doc/released/index.html b/doc/released/index.html
index d8370b6..fe276ee 100644
--- a/doc/released/index.html
+++ b/doc/released/index.html
@@ -138,6 +138,35 @@
 <tr> <td>README's
      </td>
      <td>Changes and porting guide for AspectJ 
+        <a href="README-195.html">1.9.5</a>,
+        <a href="README-194.html">1.9.4</a>,
+        <a href="README-193.html">1.9.3</a>,
+        <a href="README-192.html">1.9.2</a>,
+        <a href="README-191.html">1.9.1</a>,
+        <a href="README-190.html">1.9.0</a>,
+        <a href="README-1811.html">1.8.11</a>,
+        <a href="README-1810.html">1.8.10</a>,
+        <a href="README-189.html">1.8.9</a>,
+        <a href="README-188.html">1.8.8</a>,
+        <a href="README-187.html">1.8.7</a>,
+        <a href="README-186.html">1.8.6</a>,
+        <a href="README-185.html">1.8.5</a>,
+        <a href="README-184.html">1.8.4</a>,
+        <a href="README-183.html">1.8.3</a>,
+        <a href="README-182.html">1.8.2</a>,
+        <a href="README-181.html">1.8.1</a>,
+        <a href="README-180.html">1.8.0</a>,
+        <a href="README-174.html">1.7.4</a>,
+        <a href="README-173.html">1.7.3</a>,
+        <a href="README-172.html">1.7.2</a>,
+        <a href="README-171.html">1.7.1</a>,
+        <a href="README-170.html">1.7.0</a>,
+        <a href="README-1612.html">1.6.12</a>,
+        <a href="README-1611.html">1.6.11</a>,
+        <a href="README-1610.html">1.6.10</a>,
+        <a href="README-169.html">1.6.9</a>,
+        <a href="README-168.html">1.6.8</a>,
+        <a href="README-167.html">1.6.7</a>,
         <a href="README-166.html">1.6.6</a>,
         <a href="README-165.html">1.6.5</a>,
         <a href="README-164.html">1.6.4</a>,
diff --git a/downloads.php b/downloads.php
index 653ee25..25e0f08 100644
--- a/downloads.php
+++ b/downloads.php
@@ -155,6 +155,24 @@
   <!-- ============ LATEST STABLE RELEASE ======================= -->
 
 
+  <div class="homeitem3col">
+  <h3 id="stable_release">Latest Stable Release</h3>
+  <ul>
+    <li>
+    <b>AspectJ 1.9.5, Released 28 Nov 2019</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.5.jar">aspectj-1.9.5.jar</a> (~17M)<br>
+          <a href="http://www.eclipse.org/downloads/download.php?file=/tools/aspectj/aspectj-1.9.5-src.jar">aspectj-1.9.5-src.jar</a>
+      </td>
+    </tr>
+    </table>
+  </li>
+  </ul>
+</div>
+
 <div class="homeitem3col">
   <h3 id="stable_release">Latest Stable Release</h3>
   <ul>
diff --git a/index.php b/index.php
index 92ca172..ba87c5d 100644
--- a/index.php
+++ b/index.php
@@ -86,7 +86,12 @@
 				
 		<div class="homeitem">
 			<h3>News and Events</h3>
-
+ 
+      <li>AspectJ 1.9.5 is <a href="downloads.php">available for download</a>.
+      See the <a href="doc/released/README-195.html">readme</a>
+      for more information.
+      <br><div align="right"><span class="dates"><i>posted 28-Nov-19</i></span></div>
+      </li>
       
 <li>AspectJ 1.9.4 is <a href="downloads.php">available for download</a>.
 See the <a href="doc/released/README-194.html">readme</a>