Generated from commit: https://github.com/eclipse/xtext/commit/ce4ab3a9834af4e9f81d199859b0d0b8e949f0fe
diff --git a/documentation/102_moviesexample.html b/documentation/102_moviesexample.html
index 753480d..78a9bc9 100644
--- a/documentation/102_moviesexample.html
+++ b/documentation/102_moviesexample.html
@@ -216,12 +216,12 @@
 
 <p>A <a href="202_xtend_classes_members.html#fields">field’s type</a> can be inferred from the expression on the right hand-side. That is called local type inference and is supported everywhere in Xtend. We want the field to be final, so we declare it as a value using the keyword <code>val</code>.</p>
 
-<p>The initialization on the right hand side first creates a new <a href="http://docs.oracle.com/javase/8/docs/api/java/io/FileReader.html">FileReader</a>. Then the method <code>readLines()</code> is invoked on that instance. But if you have a look at <code>FileReader</code> you will not find such a method. In fact <code>readLines()</code> is a static method from Google Guava’s <a href="https://guava.dev/releases/27.1-jre/api/docs//com/google/common/io/CharStreams.html">CharStreams</a> which was imported as an <a href="202_xtend_classes_members.html#extension-imports">extension</a>. Extensions allow us to use this readable syntax.</p>
+<p>The initialization on the right hand side first creates a new <a href="http://docs.oracle.com/javase/8/docs/api/java/io/FileReader.html">FileReader</a>. Then the method <code>readLines()</code> is invoked on that instance. But if you have a look at <code>FileReader</code> you will not find such a method. In fact <code>readLines()</code> is a static method from Google Guava’s <a href="https://guava.dev/releases/30.1-jre/api/docs//com/google/common/io/CharStreams.html">CharStreams</a> which was imported as an <a href="202_xtend_classes_members.html#extension-imports">extension</a>. Extensions allow us to use this readable syntax.</p>
 
 <pre><code class="language-xtend">import static extension com.google.common.io.CharStreams.*
 </code></pre>
 
-<p><a href="https://guava.dev/releases/27.1-jre/api/docs//com/google/common/io/CharStreams.html"><code>CharStreams.readLines(Reader)</code></a> returns a <a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html"><code>List&lt;String&gt;</code></a> on which we call another extension method <code>map</code>. This one is defined in the runtime library (<a href="https://github.com/eclipse/xtext-lib/blob/master/org.eclipse.xtext.xbase.lib/src/org/eclipse/xtext/xbase/lib/ListExtensions.java">ListExtensions.map(…)</a>) and is automatically imported and therefore available on all lists. The <code>map</code> extension expects a function as a parameter. It basically invokes that function for each value in the list and returns another list containing the results of the function invocations. Actually this mapping is performed lazily so if you never access the values of the result list, the mapping function is never executed.</p>
+<p><a href="https://guava.dev/releases/30.1-jre/api/docs//com/google/common/io/CharStreams.html"><code>CharStreams.readLines(Reader)</code></a> returns a <a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html"><code>List&lt;String&gt;</code></a> on which we call another extension method <code>map</code>. This one is defined in the runtime library (<a href="https://github.com/eclipse/xtext-lib/blob/master/org.eclipse.xtext.xbase.lib/src/org/eclipse/xtext/xbase/lib/ListExtensions.java">ListExtensions.map(…)</a>) and is automatically imported and therefore available on all lists. The <code>map</code> extension expects a function as a parameter. It basically invokes that function for each value in the list and returns another list containing the results of the function invocations. Actually this mapping is performed lazily so if you never access the values of the result list, the mapping function is never executed.</p>
 
 <p>Function objects are created using <a href="203_xtend_expressions.html#lambdas">lambda expressions</a> (the code in squared brackets). Within the lambda we process a single line from the text file and turn it into a movie by splitting the string using two whitespace characters as the separator. On the result of the split operation, the method <code>iterator()</code> is invoked. As you might know <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html">String.split(String)</a> returns a string array (<code>String[]</code>), which Xtend <a href="201_types.html#conversion-rules">auto-converts to a list</a> when we call <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Iterable.html"><code>Iterable.iterator()</code></a> on it.</p>
 
diff --git a/documentation/204_activeannotations.html b/documentation/204_activeannotations.html
index 7e5fa4b..d715a06 100644
--- a/documentation/204_activeannotations.html
+++ b/documentation/204_activeannotations.html
@@ -380,13 +380,13 @@
 <pre><code>&lt;dependency&gt;
   &lt;groupId&gt;org.eclipse.xtend&lt;/groupId&gt;
   &lt;artifactId&gt;org.eclipse.xtend.core&lt;/artifactId&gt;
-  &lt;version&gt;2.24.0&lt;/version&gt;
+  &lt;version&gt;2.25.0&lt;/version&gt;
   &lt;scope&gt;test&lt;/scope&gt;
 &lt;/dependency&gt;
 &lt;dependency&gt;
   &lt;groupId&gt;org.eclipse.xtext&lt;/groupId&gt;
   &lt;artifactId&gt;org.eclipse.xtext.xbase.testing&lt;/artifactId&gt;
-  &lt;version&gt;2.24.0&lt;/version&gt;
+  &lt;version&gt;2.25.0&lt;/version&gt;
   &lt;scope&gt;test&lt;/scope&gt;
 &lt;/dependency&gt;
 </code></pre>
diff --git a/download.html b/download.html
index ffc4519..c8a5a1e 100644
--- a/download.html
+++ b/download.html
@@ -128,7 +128,7 @@
 				</p>
 				<p>
 				
-					<strong><a href="releasenotes.html">Xtend 2.24.0 Release Notes</a></strong>
+					<strong><a href="releasenotes.html">Xtend 2.25.0 Release Notes</a></strong>
 				
 				</p>
 			</div>
@@ -166,7 +166,7 @@
 <pre><code class="language-xml">&lt;dependency&gt;
   &lt;groupId&gt;org.eclipse.xtend&lt;/groupId&gt;
   &lt;artifactId&gt;org.eclipse.xtend.lib&lt;/artifactId&gt;
-  &lt;version&gt;2.24.0&lt;/version&gt;
+  &lt;version&gt;2.25.0&lt;/version&gt;
 &lt;/dependency&gt;
 </code></pre>
 
@@ -175,7 +175,7 @@
 <pre><code class="language-xml">&lt;plugin&gt;
   &lt;groupId&gt;org.eclipse.xtend&lt;/groupId&gt;
   &lt;artifactId&gt;xtend-maven-plugin&lt;/artifactId&gt;
-  &lt;version&gt;2.24.0&lt;/version&gt;
+  &lt;version&gt;2.25.0&lt;/version&gt;
   &lt;executions&gt;
     &lt;execution&gt;
       &lt;goals&gt;
@@ -199,10 +199,10 @@
   id "org.xtext.xtend" version "2.0.8"
 }
 
-repositories.jcenter()
+repositories.mavenCentral()
 
 dependencies {
-  compile 'org.eclipse.xtend:org.eclipse.xtend.lib:2.24.0'
+  compile 'org.eclipse.xtend:org.eclipse.xtend.lib:2.25.0'
 }
 </code></pre>
 
diff --git a/feed.xml b/feed.xml
index a0e27cc..46b6c26 100644
--- a/feed.xml
+++ b/feed.xml
@@ -6,11 +6,69 @@
 </description>
     <link>http://xtend-lang.org/xtend/</link>
     <atom:link href="http://xtend-lang.org/xtend/feed.xml" rel="self" type="application/rss+xml"/>
-    <pubDate>Wed, 17 Feb 2021 04:16:05 +0000</pubDate>
-    <lastBuildDate>Wed, 17 Feb 2021 04:16:05 +0000</lastBuildDate>
+    <pubDate>Mon, 01 Mar 2021 16:26:09 +0000</pubDate>
+    <lastBuildDate>Mon, 01 Mar 2021 16:26:09 +0000</lastBuildDate>
     <generator>Jekyll v2.5.3</generator>
     
       <item>
+        <title>Xtend 2.25.0 Release Notes</title>
+        <description>&lt;p&gt;Xtend 2.25.0 is a maintenance release.&lt;/p&gt;
+
+&lt;h2 id=&quot;call-to-action-secure-the-future-maintenance-of-xtext--xtend&quot;&gt;Call to Action: Secure the future maintenance of Xtext &amp;amp; Xtend&lt;/h2&gt;
+
+&lt;p&gt;As you might have recognized, the number of people contributing to Xtext &amp;amp; Xtend on a regular basis has declined over the past years and so has the number of contributions. At the same time the amount of work for basic maintenance has stayed the same or even increased with the new release cadence of Java and the Eclipse simultaneous release. Briefly: The future maintenance of Xtext &amp;amp; especially Xtend is at risk, at least in the current form and as part of the Eclipse Simrel. If you care, please join the discussion in &lt;a href=&quot;https://github.com/eclipse/xtext/issues/1721&quot;&gt;https://github.com/eclipse/xtext/issues/1721&lt;/a&gt;.&lt;/p&gt;
+
+&lt;h2 id=&quot;updates&quot;&gt;Updates&lt;/h2&gt;
+
+&lt;ul&gt;
+  &lt;li&gt;Xtend now makes use of Guava 30.1.&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;h2 id=&quot;enhancements&quot;&gt;Enhancements&lt;/h2&gt;
+
+&lt;ul&gt;
+  &lt;li&gt;&lt;a href=&quot;https://github.com/eclipse/xtext-xtend/issues/1029&quot;&gt;#1029&lt;/a&gt;: Xtend now generates less unused imports (classes from the same package).&lt;/li&gt;
+  &lt;li&gt;&lt;a href=&quot;https://github.com/eclipse/xtext-xtend/issues/1147&quot;&gt;#1147&lt;/a&gt;: &lt;code&gt;serialVersionUID&lt;/code&gt; is no longer flagged as unused.&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;h2 id=&quot;credits&quot;&gt;Credits&lt;/h2&gt;
+
+&lt;p&gt;The Xtend Language project is thankful for the dedication of each committer and contributor. This release has been made possible by the following persons (in order of the number of contributed commits to this release):&lt;/p&gt;
+
+&lt;ul&gt;
+  &lt;li&gt;Christian Dietrich (itemis)&lt;/li&gt;
+  &lt;li&gt;Harald Fassler &lt;img src=&quot;https://img.shields.io/badge/-first%20time%20contributor-green.svg&quot; alt=&quot;&quot; /&gt;&lt;/li&gt;
+  &lt;li&gt;Karsten Thoms (Karakun)&lt;/li&gt;
+  &lt;li&gt;Tamas Miklossy (itemis)&lt;/li&gt;
+  &lt;li&gt;Nico Prediger (itemis)&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;h2 id=&quot;fixed-issues&quot;&gt;Fixed Issues&lt;/h2&gt;
+
+&lt;p&gt;As in every release cycle we were eagerly hunting down bugs, and reviewed and integrated plenty of contributions. For further details please refer to the following lists:&lt;/p&gt;
+
+&lt;ul&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;a href=&quot;https://github.com/search?q=is%3Aissue+milestone%3ARelease_2.25+is%3Aclosed+repo%3Aeclipse%2Fxtext-xtend&amp;amp;type=Issues&quot;&gt;Fixed GitHub issues&lt;/a&gt;&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;a href=&quot;https://github.com/search?q=is%3Apr+milestone%3ARelease_2.25+is%3Aclosed+repo%3Aeclipse%2Fxtext-xtend&amp;amp;type=Issues&quot;&gt;Closed Pull Requests&lt;/a&gt;&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;a href=&quot;https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;amp;bug_status=VERIFIED&amp;amp;bug_status=CLOSED&amp;amp;classification=Modeling&amp;amp;classification=Tools&amp;amp;columnlist=product%2Ccomponent%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cchangeddate%2Ckeywords&amp;amp;f0=OP&amp;amp;f1=OP&amp;amp;f3=CP&amp;amp;f4=CP&amp;amp;known_name=Xtext%202.25&amp;amp;list_id=16618269&amp;amp;product=TMF&amp;amp;product=Xtend&amp;amp;query_based_on=Xtext%202.25&amp;amp;query_format=advanced&amp;amp;status_whiteboard=v2.25&amp;amp;status_whiteboard_type=allwordssubstr&quot;&gt;Fixed Eclipse Bugzilla tickets&lt;/a&gt;&lt;/p&gt;
+  &lt;/li&gt;
+&lt;/ul&gt;
+</description>
+        <pubDate>Tue, 02 Mar 2021 00:00:00 +0000</pubDate>
+        <link>http://xtend-lang.org/xtend/releasenotes/2021/03/02/version-2-25-0.html</link>
+        <guid isPermaLink="true">http://xtend-lang.org/xtend/releasenotes/2021/03/02/version-2-25-0.html</guid>
+        
+        
+        <category>releasenotes</category>
+        
+      </item>
+    
+      <item>
         <title>Xtend 2.24.0 Release Notes</title>
         <description>&lt;p&gt;Xtend 2.24.0 is a maintenance release.&lt;/p&gt;
 
@@ -619,52 +677,5 @@
         
       </item>
     
-      <item>
-        <title>Xtend 2.16.0 Release Notes</title>
-        <description>&lt;p&gt;This release focuses on stability, performance and the compatibility with Eclipse 2018-12.&lt;/p&gt;
-
-&lt;h2 id=&quot;hover-and-hyperlink-on-links-in-javadoc-comments&quot;&gt;Hover and Hyperlink on links in Javadoc comments&lt;/h2&gt;
-
-&lt;p&gt;Inside Xtend source files, hovering over a link inside a Javadoc will now display the Javadoc comments in a hover pop-up. F3 is also supported on these links.&lt;/p&gt;
-
-&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_16_hover_javadoc_link.png&quot; alt=&quot;Hover Example&quot; /&gt;&lt;/p&gt;
-
-&lt;h2 id=&quot;triple-equals-quickfix-is-now-a-multifix&quot;&gt;Triple-equals quickfix is now a multifix&lt;/h2&gt;
-
-&lt;p&gt;Warnings of the type &lt;code&gt;The operator &#39;!=&#39; should be replaced by &#39;!==&#39; when null is one of the arguments.&lt;/code&gt; could only be fixed one by one. The quickfix has been extended to allow fixing multiple issues at once.&lt;/p&gt;
-
-&lt;h2 id=&quot;deprecation-of-gwt&quot;&gt;Deprecation of GWT&lt;/h2&gt;
-
-&lt;p&gt;We will no longer maintain the GWT versions of Xbase and Xtend Lib. The corresponding jars will be no longer published with future versions of Xtext (likely from 2.17 on).&lt;/p&gt;
-
-&lt;h2 id=&quot;outlook-for-217&quot;&gt;Outlook for 2.17&lt;/h2&gt;
-
-&lt;p&gt;Java 11 Support, a Maven BOM and a new MWE version are planned for 2.17.&lt;/p&gt;
-
-&lt;h2 id=&quot;fixed-issues&quot;&gt;Fixed Issues&lt;/h2&gt;
-
-&lt;p&gt;As in every release cycle we were eagerly hunting down bugs, and reviewed and integrated plenty of contributions. More than 90 issues and almost 300 pull requests have made it into this release. For further details please refer to the following lists:&lt;/p&gt;
-
-&lt;ul&gt;
-  &lt;li&gt;
-    &lt;p&gt;&lt;a href=&quot;https://github.com/search?utf8=%E2%9C%93&amp;amp;q=is%3Aissue+milestone%3ARelease_2.16+is%3Aclosed+repo%3Aeclipse%2Fxtext+repo%3Aeclipse%2Fxtext-core+repo%3Aeclipse%2Fxtext-lib+repo%3Aeclipse%2Fxtext-extras+repo%3Aeclipse%2Fxtext-eclipse+repo%3Aeclipse%2Fxtext-idea+repo%3Aeclipse%2Fxtext-web+repo%3Aeclipse%2Fxtext-maven+repo%3Aeclipse%2Fxtext-xtend&amp;amp;type=Issues&amp;amp;ref=searchresults&quot;&gt;Fixed GitHub issues&lt;/a&gt;&lt;/p&gt;
-  &lt;/li&gt;
-  &lt;li&gt;
-    &lt;p&gt;&lt;a href=&quot;https://github.com/search?utf8=%E2%9C%93&amp;amp;q=is%3Apr+milestone%3ARelease_2.16+is%3Aclosed+repo%3Aeclipse%2Fxtext+repo%3Aeclipse%2Fxtext-core+repo%3Aeclipse%2Fxtext-lib+repo%3Aeclipse%2Fxtext-extras+repo%3Aeclipse%2Fxtext-eclipse+repo%3Aeclipse%2Fxtext-idea+repo%3Aeclipse%2Fxtext-web+repo%3Aeclipse%2Fxtext-maven+repo%3Aeclipse%2Fxtext-xtend&amp;amp;type=Issues&amp;amp;ref=searchresults&quot;&gt;Closed Pull Requests&lt;/a&gt;&lt;/p&gt;
-  &lt;/li&gt;
-  &lt;li&gt;
-    &lt;p&gt;&lt;a href=&quot;https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;amp;bug_status=VERIFIED&amp;amp;bug_status=CLOSED&amp;amp;classification=Modeling&amp;amp;classification=Tools&amp;amp;columnlist=product%2Ccomponent%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cchangeddate%2Ckeywords&amp;amp;f0=OP&amp;amp;f1=OP&amp;amp;f3=CP&amp;amp;f4=CP&amp;amp;known_name=Xtext%202.16&amp;amp;list_id=16618269&amp;amp;product=TMF&amp;amp;product=Xtend&amp;amp;query_based_on=Xtext%202.16&amp;amp;query_format=advanced&amp;amp;status_whiteboard=v2.16&amp;amp;status_whiteboard_type=allwordssubstr&quot;&gt;Fixed Eclipse Bugzilla tickets&lt;/a&gt;&lt;/p&gt;
-  &lt;/li&gt;
-&lt;/ul&gt;
-</description>
-        <pubDate>Tue, 04 Dec 2018 00:00:00 +0000</pubDate>
-        <link>http://xtend-lang.org/xtend/releasenotes/2018/12/04/version-2-16-0.html</link>
-        <guid isPermaLink="true">http://xtend-lang.org/xtend/releasenotes/2018/12/04/version-2-16-0.html</guid>
-        
-        
-        <category>releasenotes</category>
-        
-      </item>
-    
   </channel>
 </rss>
diff --git a/releasenotes.html b/releasenotes.html
index 9ac033d..145b6b9 100644
--- a/releasenotes.html
+++ b/releasenotes.html
@@ -123,6 +123,8 @@
 					<h3>Table of Contents</h3>
 					<ul>
 						
+							<li><p><a href="#/releasenotes/2021/03/02/version-2-25-0">Xtend 2.25.0 Release Notes &mdash; Mar 2, 2021</a></p>
+						
 							<li><p><a href="#/releasenotes/2020/12/01/version-2-24-0">Xtend 2.24.0 Release Notes &mdash; Dec 1, 2020</a></p>
 						
 							<li><p><a href="#/releasenotes/2020/09/01/version-2-23-0">Xtend 2.23.0 Release Notes &mdash; Sep 1, 2020</a></p>
@@ -141,12 +143,63 @@
 						
 							<li><p><a href="#/releasenotes/2019/03/05/version-2-17-0">Xtend 2.17.0 Release Notes &mdash; Mar 5, 2019</a></p>
 						
-							<li><p><a href="#/releasenotes/2018/12/04/version-2-16-0">Xtend 2.16.0 Release Notes &mdash; Dec 4, 2018</a></p>
-						
 					</ul>
 				</div>
 				
 				  <hr/>
+				  <section id="/releasenotes/2021/03/02/version-2-25-0">
+				  	<h1>Xtend 2.25.0 Release Notes<small>&nbsp;&nbsp;Mar 2, 2021</small></h1>
+				    <br/>
+				    <p>Xtend 2.25.0 is a maintenance release.</p>
+
+<h2 id="call-to-action-secure-the-future-maintenance-of-xtext--xtend">Call to Action: Secure the future maintenance of Xtext &amp; Xtend</h2>
+
+<p>As you might have recognized, the number of people contributing to Xtext &amp; Xtend on a regular basis has declined over the past years and so has the number of contributions. At the same time the amount of work for basic maintenance has stayed the same or even increased with the new release cadence of Java and the Eclipse simultaneous release. Briefly: The future maintenance of Xtext &amp; especially Xtend is at risk, at least in the current form and as part of the Eclipse Simrel. If you care, please join the discussion in <a href="https://github.com/eclipse/xtext/issues/1721">https://github.com/eclipse/xtext/issues/1721</a>.</p>
+
+<h2 id="updates">Updates</h2>
+
+<ul>
+  <li>Xtend now makes use of Guava 30.1.</li>
+</ul>
+
+<h2 id="enhancements">Enhancements</h2>
+
+<ul>
+  <li><a href="https://github.com/eclipse/xtext-xtend/issues/1029">#1029</a>: Xtend now generates less unused imports (classes from the same package).</li>
+  <li><a href="https://github.com/eclipse/xtext-xtend/issues/1147">#1147</a>: <code>serialVersionUID</code> is no longer flagged as unused.</li>
+</ul>
+
+<h2 id="credits">Credits</h2>
+
+<p>The Xtend Language project is thankful for the dedication of each committer and contributor. This release has been made possible by the following persons (in order of the number of contributed commits to this release):</p>
+
+<ul>
+  <li>Christian Dietrich (itemis)</li>
+  <li>Harald Fassler <img src="https://img.shields.io/badge/-first%20time%20contributor-green.svg" alt="" /></li>
+  <li>Karsten Thoms (Karakun)</li>
+  <li>Tamas Miklossy (itemis)</li>
+  <li>Nico Prediger (itemis)</li>
+</ul>
+
+<h2 id="fixed-issues">Fixed Issues</h2>
+
+<p>As in every release cycle we were eagerly hunting down bugs, and reviewed and integrated plenty of contributions. For further details please refer to the following lists:</p>
+
+<ul>
+  <li>
+    <p><a href="https://github.com/search?q=is%3Aissue+milestone%3ARelease_2.25+is%3Aclosed+repo%3Aeclipse%2Fxtext-xtend&amp;type=Issues">Fixed GitHub issues</a></p>
+  </li>
+  <li>
+    <p><a href="https://github.com/search?q=is%3Apr+milestone%3ARelease_2.25+is%3Aclosed+repo%3Aeclipse%2Fxtext-xtend&amp;type=Issues">Closed Pull Requests</a></p>
+  </li>
+  <li>
+    <p><a href="https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;classification=Modeling&amp;classification=Tools&amp;columnlist=product%2Ccomponent%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cchangeddate%2Ckeywords&amp;f0=OP&amp;f1=OP&amp;f3=CP&amp;f4=CP&amp;known_name=Xtext%202.25&amp;list_id=16618269&amp;product=TMF&amp;product=Xtend&amp;query_based_on=Xtext%202.25&amp;query_format=advanced&amp;status_whiteboard=v2.25&amp;status_whiteboard_type=allwordssubstr">Fixed Eclipse Bugzilla tickets</a></p>
+  </li>
+</ul>
+
+				  </section>
+				
+				  <hr/>
 				  <section id="/releasenotes/2020/12/01/version-2-24-0">
 				  	<h1>Xtend 2.24.0 Release Notes<small>&nbsp;&nbsp;Dec 1, 2020</small></h1>
 				    <br/>
@@ -710,48 +763,6 @@
 
 				  </section>
 				
-				  <hr/>
-				  <section id="/releasenotes/2018/12/04/version-2-16-0">
-				  	<h1>Xtend 2.16.0 Release Notes<small>&nbsp;&nbsp;Dec 4, 2018</small></h1>
-				    <br/>
-				    <p>This release focuses on stability, performance and the compatibility with Eclipse 2018-12.</p>
-
-<h2 id="hover-and-hyperlink-on-links-in-javadoc-comments">Hover and Hyperlink on links in Javadoc comments</h2>
-
-<p>Inside Xtend source files, hovering over a link inside a Javadoc will now display the Javadoc comments in a hover pop-up. F3 is also supported on these links.</p>
-
-<p><img src="/xtend/images/releasenotes/2_16_hover_javadoc_link.png" alt="Hover Example" /></p>
-
-<h2 id="triple-equals-quickfix-is-now-a-multifix">Triple-equals quickfix is now a multifix</h2>
-
-<p>Warnings of the type <code>The operator '!=' should be replaced by '!==' when null is one of the arguments.</code> could only be fixed one by one. The quickfix has been extended to allow fixing multiple issues at once.</p>
-
-<h2 id="deprecation-of-gwt">Deprecation of GWT</h2>
-
-<p>We will no longer maintain the GWT versions of Xbase and Xtend Lib. The corresponding jars will be no longer published with future versions of Xtext (likely from 2.17 on).</p>
-
-<h2 id="outlook-for-217">Outlook for 2.17</h2>
-
-<p>Java 11 Support, a Maven BOM and a new MWE version are planned for 2.17.</p>
-
-<h2 id="fixed-issues">Fixed Issues</h2>
-
-<p>As in every release cycle we were eagerly hunting down bugs, and reviewed and integrated plenty of contributions. More than 90 issues and almost 300 pull requests have made it into this release. For further details please refer to the following lists:</p>
-
-<ul>
-  <li>
-    <p><a href="https://github.com/search?utf8=%E2%9C%93&amp;q=is%3Aissue+milestone%3ARelease_2.16+is%3Aclosed+repo%3Aeclipse%2Fxtext+repo%3Aeclipse%2Fxtext-core+repo%3Aeclipse%2Fxtext-lib+repo%3Aeclipse%2Fxtext-extras+repo%3Aeclipse%2Fxtext-eclipse+repo%3Aeclipse%2Fxtext-idea+repo%3Aeclipse%2Fxtext-web+repo%3Aeclipse%2Fxtext-maven+repo%3Aeclipse%2Fxtext-xtend&amp;type=Issues&amp;ref=searchresults">Fixed GitHub issues</a></p>
-  </li>
-  <li>
-    <p><a href="https://github.com/search?utf8=%E2%9C%93&amp;q=is%3Apr+milestone%3ARelease_2.16+is%3Aclosed+repo%3Aeclipse%2Fxtext+repo%3Aeclipse%2Fxtext-core+repo%3Aeclipse%2Fxtext-lib+repo%3Aeclipse%2Fxtext-extras+repo%3Aeclipse%2Fxtext-eclipse+repo%3Aeclipse%2Fxtext-idea+repo%3Aeclipse%2Fxtext-web+repo%3Aeclipse%2Fxtext-maven+repo%3Aeclipse%2Fxtext-xtend&amp;type=Issues&amp;ref=searchresults">Closed Pull Requests</a></p>
-  </li>
-  <li>
-    <p><a href="https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;classification=Modeling&amp;classification=Tools&amp;columnlist=product%2Ccomponent%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cchangeddate%2Ckeywords&amp;f0=OP&amp;f1=OP&amp;f3=CP&amp;f4=CP&amp;known_name=Xtext%202.16&amp;list_id=16618269&amp;product=TMF&amp;product=Xtend&amp;query_based_on=Xtext%202.16&amp;query_format=advanced&amp;status_whiteboard=v2.16&amp;status_whiteboard_type=allwordssubstr">Fixed Eclipse Bugzilla tickets</a></p>
-  </li>
-</ul>
-
-				  </section>
-				
 			
 		</div>
   	</div>
diff --git a/releasenotes/2021/03/02/version-2-25-0.html b/releasenotes/2021/03/02/version-2-25-0.html
new file mode 100644
index 0000000..b38ac1e
--- /dev/null
+++ b/releasenotes/2021/03/02/version-2-25-0.html
@@ -0,0 +1,246 @@
+<!DOCTYPE html>
+<html>
+
+  <head>
+	<meta charset="UTF-8">
+	<title>Xtend - Xtend 2.25.0 Release Notes</title>
+	<meta name="viewport" content="width=device-width, initial-scale=1.0">
+	<meta name="description"
+		content="Xtend is a statically typed programming language sitting on top of Java.">
+	<meta name="author" content="Sven Efftinge">
+	<meta name="author" content="Miro Spoenemann">
+	<!--  styles -->
+	<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
+	<!--[if lt IE 9]>
+	  <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
+	<![endif]-->
+	
+	<!-- Le fav and touch icons -->
+	
+	<link rel="shortcut icon" href="/xtend/images/favicon.png">
+	
+	<link href="/xtend/css/bootstrap.css" rel="stylesheet" type='text/css'>
+	<link href="/xtend/css/bootstrap-responsive.css" rel="stylesheet" type='text/css'>
+	<link href="/xtend/css/shield-responsive.css" rel="stylesheet" type='text/css'>
+	<link href='/xtend/css/fonts.css' rel='stylesheet' type='text/css'>
+	<link href="/xtend/css/prettyPhoto.css" rel="stylesheet" media="screen" type='text/css'>
+	<link href="/xtend/css/prettify.css" type="text/css" rel="stylesheet"/>
+	<link href="/xtend/css/style.css" rel="stylesheet" type='text/css'>
+	
+	<!--[if lt IE 9]>
+	<link href="css/iebugs.css" rel="stylesheet" type='text/css'>
+	<![endif]-->
+
+	<!-- BEGIN Cookie Consent
+	<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />
+	<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"></script>
+	<script>
+	window.addEventListener("load", function(){
+	window.cookieconsent.initialise({
+		"palette": {
+		"popup": {
+		  "background": "#000"
+		},
+		"button": {
+		  "background": "#f1d600"
+		}
+		},
+		"theme": "edgeless",
+		"type": "opt-in",
+		onInitialise: function (status) {
+		  var type = this.options.type;
+		  var didConsent = this.hasConsented();
+		  if (type == 'opt-in' && didConsent) {
+		    // TODO: enable cookies
+		  }
+		  if (type == 'opt-out' && !didConsent) {
+		    // TODO: disable cookies
+		  }
+		},
+		onStatusChange: function(status, chosenBefore) {
+		  var type = this.options.type;
+		  var didConsent = this.hasConsented();
+		  if (type == 'opt-in' && didConsent) {
+		    // TODO: enable cookies
+		  }
+		  if (type == 'opt-out' && !didConsent) {
+		    // TODO: disable cookies
+		  }
+		}, 
+		onRevokeChoice: function() {
+		  var type = this.options.type;
+		  if (type == 'opt-in') {
+		    // TODO: disable cookies
+		  }
+		  if (type == 'opt-out') {
+		    // TODO: enable cookies
+		  }
+		},
+		"content": {
+		"href": "http://www.eclipse.org/legal/privacy.php"
+		}
+	})});
+	</script>
+	END Cookie Consent -->
+</head>
+
+
+  <body>
+
+    <!-- Navbar -->
+  <div class="navbar navbar-fixed-top"
+    style="border-bottom: 1px solid #000;">
+    <div class="navbar-inner">
+      <div class="container">
+        <a class="btn btn-navbar" data-toggle="collapse"
+          data-target=".nav-collapse"> <span class="icon-bar"></span> <span
+          class="icon-bar"></span> <span class="icon-bar"></span>
+        </a> <a class="brand" href="/xtend/index.html"></a>
+        <div class="nav-collapse collapse" style="height: 0px;">
+          <ul class="nav">
+            <li ><a href="/xtend/download.html">Download</a></li>
+            <li ><a href="/xtend/documentation/index.html">Documentation</a></li>
+            <li ><a href="/xtend/community.html">Community</a></li>
+            <li ><a href="http://xtext.org">Xtext</a></li>
+            <li ><a href="http://www.eclipse.org">Eclipse.org</a></li>
+          </ul>
+              <!--div class="btn-group pull-right">
+                <div class="g-plusone" data-href="http://www.xtend-lang.org"></div>
+              </div-->
+        </div>
+        <!--/.nav-collapse -->
+      </div>
+    </div>
+  </div>
+  <!-- Navbar End -->
+
+
+    <div class="post">
+
+  <header class="post-header">
+    <h1 class="post-title">Xtend 2.25.0 Release Notes</h1>
+    <p class="post-meta">Mar 2, 2021</p>
+  </header>
+
+  <article class="post-content">
+    <p>Xtend 2.25.0 is a maintenance release.</p>
+
+<h2 id="call-to-action-secure-the-future-maintenance-of-xtext--xtend">Call to Action: Secure the future maintenance of Xtext &amp; Xtend</h2>
+
+<p>As you might have recognized, the number of people contributing to Xtext &amp; Xtend on a regular basis has declined over the past years and so has the number of contributions. At the same time the amount of work for basic maintenance has stayed the same or even increased with the new release cadence of Java and the Eclipse simultaneous release. Briefly: The future maintenance of Xtext &amp; especially Xtend is at risk, at least in the current form and as part of the Eclipse Simrel. If you care, please join the discussion in <a href="https://github.com/eclipse/xtext/issues/1721">https://github.com/eclipse/xtext/issues/1721</a>.</p>
+
+<h2 id="updates">Updates</h2>
+
+<ul>
+  <li>Xtend now makes use of Guava 30.1.</li>
+</ul>
+
+<h2 id="enhancements">Enhancements</h2>
+
+<ul>
+  <li><a href="https://github.com/eclipse/xtext-xtend/issues/1029">#1029</a>: Xtend now generates less unused imports (classes from the same package).</li>
+  <li><a href="https://github.com/eclipse/xtext-xtend/issues/1147">#1147</a>: <code>serialVersionUID</code> is no longer flagged as unused.</li>
+</ul>
+
+<h2 id="credits">Credits</h2>
+
+<p>The Xtend Language project is thankful for the dedication of each committer and contributor. This release has been made possible by the following persons (in order of the number of contributed commits to this release):</p>
+
+<ul>
+  <li>Christian Dietrich (itemis)</li>
+  <li>Harald Fassler <img src="https://img.shields.io/badge/-first%20time%20contributor-green.svg" alt="" /></li>
+  <li>Karsten Thoms (Karakun)</li>
+  <li>Tamas Miklossy (itemis)</li>
+  <li>Nico Prediger (itemis)</li>
+</ul>
+
+<h2 id="fixed-issues">Fixed Issues</h2>
+
+<p>As in every release cycle we were eagerly hunting down bugs, and reviewed and integrated plenty of contributions. For further details please refer to the following lists:</p>
+
+<ul>
+  <li>
+    <p><a href="https://github.com/search?q=is%3Aissue+milestone%3ARelease_2.25+is%3Aclosed+repo%3Aeclipse%2Fxtext-xtend&amp;type=Issues">Fixed GitHub issues</a></p>
+  </li>
+  <li>
+    <p><a href="https://github.com/search?q=is%3Apr+milestone%3ARelease_2.25+is%3Aclosed+repo%3Aeclipse%2Fxtext-xtend&amp;type=Issues">Closed Pull Requests</a></p>
+  </li>
+  <li>
+    <p><a href="https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;classification=Modeling&amp;classification=Tools&amp;columnlist=product%2Ccomponent%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cchangeddate%2Ckeywords&amp;f0=OP&amp;f1=OP&amp;f3=CP&amp;f4=CP&amp;known_name=Xtext%202.25&amp;list_id=16618269&amp;product=TMF&amp;product=Xtend&amp;query_based_on=Xtext%202.25&amp;query_format=advanced&amp;status_whiteboard=v2.25&amp;status_whiteboard_type=allwordssubstr">Fixed Eclipse Bugzilla tickets</a></p>
+  </li>
+</ul>
+
+  </article>
+
+</div>
+
+    
+    <footer class="site-footer">
+  <div id="extra">
+    <div class="container inner-footer">
+      <div class="row">
+        <div class="span6">
+          <h3 class="footer-links-header">Quick Links</h3>
+          <ul class="footer-links clearfix">
+            <li><a href="http://www.eclipse.org/legal/privacy.php">Privacy Policy</a></li>
+            <li><a href="http://www.eclipse.org/legal/termsofuse.php">Terms of Use</a></li>
+            <li><a href="http://www.eclipse.org/legal/copyright.php">Copyright Agent</a></li>
+            <li><a href="http://www.eclipse.org/legal/">Legal</a></li>
+          </ul>
+          <ul class="footer-links clearfix">
+            <li><a href="http://www.eclipse.org">Eclipse Home</a></li>
+            <li><a href="http://marketplace.eclipse.org/">Market Place</a></li>
+            <li><a href="http://www.planeteclipse.org/">Eclipse Planet</a></li>
+            <li><a href="https://www.eclipse.org/forums/index.php/f/27/">Xtext Forum</a></li>
+          </ul>
+        </div>
+        <div class="span6">
+            <!-- Social Media Links -->
+            <h3 class="footer-links-header"">Social Media</h3>
+            <ul class="footer-links clearfix">
+              <li>
+                <a href="https://twitter.com/xtendlang"><img src="/xtend/images/Twitter-bird-darkgray.png" class="img-responsive" style="margin-right: 5px;height: 1em;" alt="Twitter icon">@xtendlang on Twitter</a>
+              </li>
+            </ul>
+          </div>
+
+      </div>
+    </div>
+  </div>
+  <a href="#" class="scrollup fadeOutRight animated" style="display: none;">ScrollUp</a>
+  <a href="http://dryicons.com/">Icons by http://dryicons.com</a>
+  <!-- Le javascript
+      ================================================== -->
+  <!-- Placed at the end of the document so the pages load faster -->
+  <script src="/xtend/js/jquery-1.7.1.min.js" type="text/javascript"></script>
+  <script src="/xtend/js/bootstrap.min.js" type="text/javascript"></script>
+  
+  <!-- include pretty-print files -->
+  <script src="/xtend/js/prettify.js" type="text/javascript" ></script>
+  <script src="/xtend/js/lang-xtend.js" type="text/javascript"></script>
+  
+  <!-- Include the plug-in -->
+  <script src="/xtend/js/jquery.prettyPhoto.js" type="text/javascript"></script>
+  <script src="/xtend/js/jquery.easing.1.3.js" type="text/javascript"></script>
+  <script src="/xtend/js/custom.js" type="text/javascript"></script>
+  <!--script src="https://apis.google.com/js/platform.js" async defer></script-->
+  <!--script type="text/javascript">
+    var _gaq = _gaq || [];  
+      _gaq.push([ '_setAccount', 'UA-2429174-4' ]);
+    _gaq.push([ '_trackPageview' ]);
+    (function() {
+      var ga = document.createElement('script');
+      ga.type = 'text/javascript';
+      ga.async = true;
+      ga.src = ('https:' == document.location.protocol ? 'https://ssl'
+          : 'http://www')
+          + '.google-analytics.com/ga.js';
+      var s = document.getElementsByTagName('script')[0];
+      s.parentNode.insertBefore(ga, s);
+    })();
+  </script-->
+</footer>
+
+  </body>
+
+</html>