http://git-wip-us.apache.org/repos/asf/flink-web/blob/4e75b86e/content/blog/feed.xml
----------------------------------------------------------------------
diff --git a/content/blog/feed.xml b/content/blog/feed.xml
index 57b6876..5b37a9a 100644
--- a/content/blog/feed.xml
+++ b/content/blog/feed.xml
@@ -7,6 +7,186 @@
 <atom:link href="http://flink.apache.org/blog/feed.xml"; rel="self" 
type="application/rss+xml" />
 
 <item>
+<title>Apache Flink 1.3.0 Release Announcement</title>
+<description>&lt;p&gt;The Apache Flink community is pleased to announce the 
1.3.0 release. Over the past 4 months, the Flink community has been working 
hard to resolve more than 680 issues. See the &lt;a 
href=&quot;/blog/release_1.3.0-changelog.html&quot;&gt;complete 
changelog&lt;/a&gt; for more detail.&lt;/p&gt;
+
+&lt;p&gt;This is the fourth major release in the 1.x.y series. It is API 
compatible with the other 1.x.y releases for APIs annotated with the @Public 
annotation.&lt;/p&gt;
+
+&lt;p&gt;Users can expect Flink releases now in a 4 month cycle. At the 
beginning of the 1.3 &lt;a 
href=&quot;https://cwiki.apache.org/confluence/display/FLINK/Flink+Release+and+Feature+Plan&quot;&gt;release
 cycle&lt;/a&gt;, the community decided to follow a strict &lt;a 
href=&quot;https://cwiki.apache.org/confluence/display/FLINK/Time-based+releases&quot;&gt;time-based
 release model&lt;/a&gt;.&lt;/p&gt;
+
+&lt;p&gt;We encourage everyone to download the release and check out the &lt;a 
href=&quot;https://ci.apache.org/projects/flink/flink-docs-release-1.3/&quot;&gt;documentation&lt;/a&gt;.
 Feedback through the &lt;a 
href=&quot;http://flink.apache.org/community.html#mailing-lists&quot;&gt;Flink 
mailing lists&lt;/a&gt; is, as always, gladly encouraged!&lt;/p&gt;
+
+&lt;p&gt;You can find the binaries on the updated &lt;a 
href=&quot;http://flink.apache.org/downloads.html&quot;&gt;Downloads 
page&lt;/a&gt;. Some highlights of the release are listed below.&lt;/p&gt;
+
+&lt;h1 id=&quot;large-state-handlingrecovery&quot;&gt;Large State 
Handling/Recovery&lt;/h1&gt;
+
+&lt;ul&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Incremental Checkpointing for 
RocksDB&lt;/strong&gt;: It is now possible to checkpoint only the difference 
from the previous successful checkpoint, rather than checkpointing the entire 
application state. This speeds up checkpointing and saves disk space, because 
the individual checkpoints are smaller. (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-5053&quot;&gt;FLINK-5053&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Asynchronous snapshots for heap-based state 
backends&lt;/strong&gt;: The filesystem and memory statebackends now also 
support asynchronous snapshots using a copy-on-write HashMap implementation. 
Asynchronous snapshotting makes Flink more resilient to slow storage systems 
and expensive serialization. The time an operator blocks on a snapshot is 
reduced to a minimum (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-6048&quot;&gt;FLINK-6048&lt;/a&gt;,
 &lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-5715&quot;&gt;FLINK-5715&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Allow upgrades to state serializers:&lt;/strong&gt; 
Users can now upgrade serializers, while keeping their application state. One 
use case of this is upgrading custom serializers used for managed operator 
state/keyed state. Also, registration order for POJO types/Kryo types is now no 
longer fixed (&lt;a 
href=&quot;https://ci.apache.org/projects/flink/flink-docs-release-1.3/dev/stream/state.html#custom-serialization-for-managed-state&quot;&gt;Documentation&lt;/a&gt;,
 &lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-6178&quot;&gt;FLINK-6178&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Recover job state at the granularity of 
operator&lt;/strong&gt;: Before Flink 1.3, operator state was bound to 
Flink’s internal “Task” representation. This made it hard to change a 
job’s topology while keeping its state around. With this change, users are 
allowed to do more topology changes (un-chain operators) by restoring state 
into logical operators instead of “Tasks” (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-5892&quot;&gt;FLINK-5892&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Fine-grained recovery&lt;/strong&gt; (beta): 
Instead of restarting the complete ExecutionGraph in case of a task failure, 
Flink is now able to restart only the affected subgraph and thereby 
significantly decrease recovery time (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-4256&quot;&gt;FLINK-4256&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;h1 id=&quot;datastream-api&quot;&gt;DataStream API&lt;/h1&gt;
+
+&lt;ul&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Side Outputs&lt;/strong&gt;: This change allows 
users to have more than one output stream for an operator. Operator metadata, 
internal system information (debugging, performance etc.) or rejected/late 
elements are potential use-cases for this new API feature. &lt;strong&gt;The 
Window operator is now using this new feature for late window 
elements&lt;/strong&gt; (&lt;a 
href=&quot;https://ci.apache.org/projects/flink/flink-docs-release-1.3/dev/stream/side_output.html&quot;&gt;Side
 Outputs Documentation&lt;/a&gt;, &lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-4460&quot;&gt;FLINK-4460&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Union Operator State&lt;/strong&gt;: Flink 1.2.0 
introduced broadcast state functionality, but this had not yet been exposed via 
a public API. Flink 1.3.0 provides the Union Operator State API for exposing 
broadcast operator state. The union state will send the entire state across all 
parallel instances to each instance on restore, giving each operator a full 
view of the state (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-5991&quot;&gt;FLINK-5991&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Per-Window State&lt;/strong&gt;: Previously, the 
state that a WindowFunction or ProcessWindowFunction could access was scoped to 
the key of the window but not the window itself. With this new feature, users 
can keep window state independent of the key (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-5929&quot;&gt;FLINK-5929&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;h1 id=&quot;deployment-and-tooling&quot;&gt;Deployment and 
Tooling&lt;/h1&gt;
+
+&lt;ul&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Flink HistoryServer&lt;/strong&gt;: Flink’s &lt;a 
href=&quot;https://ci.apache.org/projects/flink/flink-docs-release-1.3/monitoring/historyserver.html&quot;&gt;HistoryServer&lt;/a&gt;
 now allows you to query the status and statistics of completed jobs that have 
been archived by a JobManager (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-1579&quot;&gt;FLINK-1579&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Watermark Monitoring in Web 
Front-end&lt;/strong&gt;: For easier diagnosis of watermark issues, the Flink 
JobManager front-end now provides a new tab to track the watermark of each 
operator (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-3427&quot;&gt;FLINK-3427&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Datadog HTTP Metrics Reporter&lt;/strong&gt;: 
Datadog is a widely-used metrics system, and Flink now offers a &lt;a 
href=&quot;https://ci.apache.org/projects/flink/flink-docs-release-1.3/monitoring/metrics.html#datadog-orgapacheflinkmetricsdatadogdatadoghttpreporter&quot;&gt;Datadog
 reporter&lt;/a&gt; that contacts the Datadog http endpoint directly (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-6013&quot;&gt;FLINK-6013&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Network Buffer Configuration&lt;/strong&gt;: We 
finally got rid of the tedious network buffer configuration and replaced it 
with a more generic approach. First of all, you may now follow the idiom 
“more is better” without any penalty on the latency which could previously 
occur due to excessive buffering in incoming and outgoing channels. Secondly, 
instead of defining an absolute number of network buffers, we now use fractions 
of the available JVM memory (10% by default). This should cover more use cases 
by default and may also be tweaked by defining a minimum and maximum 
size.&lt;/p&gt;
+  &lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;→ See &lt;a 
href=&quot;https://ci.apache.org/projects/flink/flink-docs-release-1.3/setup/config.html#configuring-the-network-buffers&quot;&gt;Configuring
 the Network Buffers&lt;/a&gt; in the Flink documentation.&lt;/p&gt;
+
+&lt;h1 id=&quot;table-api--sql&quot;&gt;Table API / SQL&lt;/h1&gt;
+
+&lt;ul&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Support for Retractions in Table API / 
SQL&lt;/strong&gt;: As part of our endeavor to support continuous queries on 
&lt;a 
href=&quot;http://flink.apache.org/news/2017/04/04/dynamic-tables.html&quot;&gt;Dynamic
 Tables&lt;/a&gt;, Retraction is an important building block that will enable a 
whole range of new applications which require updating previously-emitted 
results. Examples for such use cases are computation of early results for 
long-running windows, updates due to late arriving data, or maintaining 
constantly changing results similar to materialized views in relational 
database systems. Flink 1.3.0 supports retraction for non-windowed aggregates. 
Results with updates can be either converted into a DataStream or materialized 
to external data stores using TableSinks with upsert or retraction 
support.&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;&lt;strong&gt;Extended support for aggregations in Table API / 
SQL&lt;/strong&gt;: With Flink 1.3.0, the Table API and SQL support many more 
types of aggregations, including
+    &lt;ul&gt;
+      &lt;li&gt;
+        &lt;p&gt;GROUP BY window aggregations in SQL (via the window functions 
&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-6011&quot;&gt;TUMBLE, 
HOP, and SESSION windows&lt;/a&gt;) for both batch and streaming.&lt;/p&gt;
+      &lt;/li&gt;
+      &lt;li&gt;
+        &lt;p&gt;SQL OVER window aggregations (only for streaming)&lt;/p&gt;
+      &lt;/li&gt;
+      &lt;li&gt;
+        &lt;p&gt;Non-windowed aggregations (in streaming with 
retractions).&lt;/p&gt;
+      &lt;/li&gt;
+      &lt;li&gt;
+        &lt;p&gt;User-defined aggregation functions for custom aggregation 
logic.&lt;/p&gt;
+      &lt;/li&gt;
+    &lt;/ul&gt;
+  &lt;/li&gt;
+  &lt;li&gt;&lt;strong&gt;External catalog support&lt;/strong&gt;: The Table 
API &amp;amp; SQL allows to register external catalogs. Table API and SQL 
queries can then have access to table sources and their schema from the 
external catalogs without register those tables one by one.&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;→ See &lt;a 
href=&quot;https://ci.apache.org/projects/flink/flink-docs-release-1.3/dev/table_api.html#group-windows&quot;&gt;the
 Flink documentation&lt;/a&gt; for details about these features.&lt;/p&gt;
+
+&lt;div class=&quot;alert alert-warning&quot;&gt;
+  The Table API / SQL documentation is currently being reworked. The community 
plans to publish the updated docs in the week of June 5th.
+&lt;/div&gt;
+
+&lt;h1 id=&quot;connectors&quot;&gt;Connectors&lt;/h1&gt;
+
+&lt;ul&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;ElasticSearch 5.x support&lt;/strong&gt;: The 
ElasticSearch connectors have been restructured to have a common base module 
and specific modules for ES 1, 2 and 5, similar to how the Kafka connectors are 
organized. This will make fixes and future improvements available across all ES 
versions (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-4988&quot;&gt;FLINK-4988&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Allow rescaling the Kinesis 
Consumer&lt;/strong&gt;: Flink 1.2.0 introduced rescalable state for DataStream 
programs. With Flink 1.3, the Kinesis Consumer also makes use of that engine 
feature (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-4821&quot;&gt;FLINK-4821&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Transparent shard discovery for Kinesis 
Consumer&lt;/strong&gt;: The Kinesis consumer can now discover new shards 
without failing / restarting jobs when a resharding is happening (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-4577&quot;&gt;FLINK-4577&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Allow setting custom start positions for the Kafka 
consumer&lt;/strong&gt;: With this change, you can instruct Flink’s Kafka 
consumer to start reading messages from a specific offset (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-3123&quot;&gt;FLINK-3123&lt;/a&gt;)
 or earliest / latest offset (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-4280&quot;&gt;FLINK-4280&lt;/a&gt;)
 without respecting committed offsets in Kafka.&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Allow out-opt from offset committing for the Kafka 
consumer&lt;/strong&gt;: By default, Kafka commits the offsets to the Kafka 
broker once a checkpoint has been completed. This change allows users to 
disable this mechanism (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-3398&quot;&gt;FLINK-3398&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;h1 id=&quot;cep-library&quot;&gt;CEP Library&lt;/h1&gt;
+
+&lt;p&gt;The CEP library has been greatly enhanced and is now able to 
accommodate more use-cases out-of-the-box (expressivity enhancements), make 
more efficient use of the available resources, adjust to changing runtime 
conditions–all without breaking backwards compatibility of operator 
state.&lt;/p&gt;
+
+&lt;p&gt;Please note that the API of the CEP library has been updated with 
this release.&lt;/p&gt;
+
+&lt;p&gt;Below are some of the main features of the revamped CEP 
library:&lt;/p&gt;
+
+&lt;ul&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;Make CEP operators rescalable&lt;/strong&gt;: Flink 
1.2.0 introduced rescalable state for DataStream programs. With Flink 1.3, the 
CEP library also makes use of that engine feature (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-5420&quot;&gt;FLINK-5420&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;State Cleanup and Late element 
handling&lt;/strong&gt;: The CEP library will now output late elements using 
the newly introduced side outputs (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-6205&quot;&gt;FLINK-6205&lt;/a&gt;,
 &lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-5174&quot;&gt;FLINK-5174&lt;/a&gt;).&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;
+    &lt;p&gt;&lt;strong&gt;New operators for the CEP 
library&lt;/strong&gt;:&lt;/p&gt;
+
+    &lt;ul&gt;
+      &lt;li&gt;
+        &lt;p&gt;Quantifiers (*,+,?) for the pattern API (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-3318&quot;&gt;FLINK-3318&lt;/a&gt;)&lt;/p&gt;
+      &lt;/li&gt;
+      &lt;li&gt;
+        &lt;p&gt;Support for different continuity requirements (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-6208&quot;&gt;FLINK-6208&lt;/a&gt;)&lt;/p&gt;
+      &lt;/li&gt;
+      &lt;li&gt;
+        &lt;p&gt;Support for iterative conditions (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-6197&quot;&gt;FLINK-6197&lt;/a&gt;)&lt;/p&gt;
+      &lt;/li&gt;
+    &lt;/ul&gt;
+  &lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;h1 id=&quot;gelly-library&quot;&gt;Gelly Library&lt;/h1&gt;
+
+&lt;ul&gt;
+  &lt;li&gt;
+    &lt;p&gt;PageRank algorithm for directed graphs&lt;/p&gt;
+  &lt;/li&gt;
+  &lt;li&gt;Unified driver for running Gelly examples &lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-4949&quot;&gt;FLINK-4949&lt;/a&gt;).&lt;/li&gt;
+  &lt;li&gt;PageRank algorithm for directed graphs (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-4896&quot;&gt;FLINK-4896&lt;/a&gt;).&lt;/li&gt;
+  &lt;li&gt;Add Circulant and Echo graph generators (&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-6393&quot;&gt;FLINK-6393&lt;/a&gt;).&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;div class=&quot;alert alert-warning&quot;&gt;
+  There are two &lt;strong&gt;known issues&lt;/strong&gt; in Flink 1.3.0. Both 
will be addressed in the next &lt;i&gt;1.3.1&lt;/i&gt; release.
+  &lt;br /&gt;
+  &lt;ul&gt;
+       &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-6783&quot;&gt;FLINK-6783&lt;/a&gt;:
 Wrongly extracted TypeInformations for 
&lt;code&gt;WindowedStream::aggregate&lt;/code&gt;&lt;/li&gt;
+       &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/FLINK-6775&quot;&gt;FLINK-6783&lt;/a&gt;:
 StateDescriptor cannot be shared by multiple subtasks&lt;/li&gt;
+  &lt;/ul&gt; 
+&lt;/div&gt;
+
+&lt;h1 id=&quot;list-of-contributors&quot;&gt;List of Contributors&lt;/h1&gt;
+
+&lt;p&gt;According to git shortlog, the following 103 people contributed to 
the 1.3.0 release. Thank you to all contributors!&lt;/p&gt;
+
+&lt;p&gt;Addison Higham, Alexey Diomin, Aljoscha Krettek, Andrea Sella, Andrey 
Melentyev, Anton Mushin, barcahead, biao.liub, Bowen Li, Chen Qin, Chico Sokol, 
David Anderson, Dawid Wysakowicz, DmytroShkvyra, Fabian Hueske, Fabian Wollert, 
fengyelei, Flavio Pompermaier, FlorianFan, Fokko Driesprong, Geoffrey Mon, 
godfreyhe, gosubpl, Greg Hogan, guowei.mgw, hamstah, Haohui Mai, Hequn Cheng, 
hequn.chq, heytitle, hongyuhong, Jamie Grier, Jark Wu, jingzhang, Jinkui Shi, 
Jin Mingjian, Joerg Schad, Joshua Griffith, Jürgen Thomann, kaibozhou, 
Kathleen Sharp, Ken Geis, kkloudas, Kurt Young, lincoln-lil, lingjinjiang, 
liuyuzhong7, Lorenz Buehmann, manuzhang, Marc Tremblay, Mauro Cortellazzi, Max 
Kuklinski, mengji.fy, Mike Dias, mtunique, Nico Kruber, Omar Erminy, Patrick 
Lucas, paul, phoenixjiangnan, rami-alisawi, Ramkrishna, Rick Cox, Robert 
Metzger, Rodrigo Bonifacio, rtudoran, Seth Wiesman, Shaoxuan Wang, shijinkui, 
shuai.xus, Shuyi Chen, spkavuly, Stefano Bortoli, Stefan Richter, Stephan
  Ewen, Stephen Gran, sunjincheng121, tedyu, Till Rohrmann, tonycox, Tony Wei, 
twalthr, Tzu-Li (Gordon) Tai, Ufuk Celebi, Ventura Del Monte, Vijay 
Srinivasaraghavan, WangTaoTheTonic, wenlong.lwl, xccui, xiaogang.sxg, Xpray, 
zcb, zentol, zhangminglei, Zhenghua Gao, Zhijiang, Zhuoluo Yang, zjureel, Zohar 
Mizrahi, 士远, 槿瑜, 淘江, 金竹&lt;/p&gt;
+
+</description>
+<pubDate>Thu, 01 Jun 2017 14:00:00 +0200</pubDate>
+<link>http://flink.apache.org/news/2017/06/01/release-1.3.0.html</link>
+<guid isPermaLink="true">/news/2017/06/01/release-1.3.0.html</guid>
+</item>
+
+<item>
 <title>Introducing Docker Images for Apache Flink</title>
 <description>&lt;p&gt;For some time, the Apache Flink community has provided 
scripts to build a Docker image to run Flink. Now, starting with version 1.2.1, 
Flink will have a &lt;a 
href=&quot;https://hub.docker.com/r/_/flink/&quot;&gt;Docker image&lt;/a&gt; on 
the Docker Hub. This image is maintained by the Flink community and curated by 
the &lt;a 
href=&quot;https://github.com/docker-library/official-images&quot;&gt;Docker&lt;/a&gt;
 team to ensure it meets the quality standards for container images of the 
Docker community.&lt;/p&gt;
 
@@ -4193,7 +4373,7 @@ register for the conference.&lt;/p&gt;
 several parts of the system. We suggest all users of Flink to work with this
 latest stable version.&lt;/p&gt;
 
-&lt;p&gt;&lt;a href=&quot;/downloads.html&quot;&gt;Download the 
release&lt;/a&gt; and &lt;a 
href=&quot;http://ci.apache.org/projects/flink/flink-docs-release-1.2&quot;&gt;check
 out the
+&lt;p&gt;&lt;a href=&quot;/downloads.html&quot;&gt;Download the 
release&lt;/a&gt; and &lt;a 
href=&quot;http://ci.apache.org/projects/flink/flink-docs-release-1.3&quot;&gt;check
 out the
 documentation&lt;/a&gt;. Feedback through the Flink mailing lists
 is, as always, very welcome!&lt;/p&gt;
 

http://git-wip-us.apache.org/repos/asf/flink-web/blob/4e75b86e/content/blog/index.html
----------------------------------------------------------------------
diff --git a/content/blog/index.html b/content/blog/index.html
index 3b0b2ab..8fcf2b7 100644
--- a/content/blog/index.html
+++ b/content/blog/index.html
@@ -90,20 +90,20 @@
 
             <!-- Documentation -->
             <!-- <li>
-              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2"; 
target="_blank">Documentation <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
+              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">Documentation <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
             </li> -->
             <li class="dropdown">
               <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation
                 <span class="caret"></span></a>
                 <ul class="dropdown-menu">
-                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2"; 
target="_blank">1.2 (Latest stable release) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
-                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">1.3 (Snapshot) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
+                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">1.3 (Latest stable release) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
+                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-master"; 
target="_blank">1.4 (Snapshot) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
                 </ul>
               </li>
 
             <!-- Quickstart -->
             <li>
-              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2/quickstart/setup_quickstart.html";
 target="_blank">Quickstart <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
+              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3/quickstart/setup_quickstart.html";
 target="_blank">Quickstart <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
             </li>
 
             <!-- GitHub -->
@@ -142,6 +142,19 @@
     <!-- Blog posts -->
     
     <article>
+      <h2 class="blog-title"><a 
href="/news/2017/06/01/release-1.3.0.html">Apache Flink 1.3.0 Release 
Announcement</a></h2>
+      <p>01 Jun 2017 by Robert Metzger (<a 
href="https://twitter.com/rmetzger_";>@rmetzger_</a>)</p>
+
+      <p><p>The Apache Flink community is pleased to announce the 1.3.0 
release. Over the past 4 months, the Flink community has been working hard to 
resolve more than 680 issues. See the <a 
href="/blog/release_1.3.0-changelog.html">complete changelog</a> for more 
detail.</p>
+
+</p>
+
+      <p><a href="/news/2017/06/01/release-1.3.0.html">Continue reading 
&raquo;</a></p>
+    </article>
+
+    <hr>
+    
+    <article>
       <h2 class="blog-title"><a 
href="/news/2017/05/16/official-docker-image.html">Introducing Docker Images 
for Apache Flink</a></h2>
       <p>16 May 2017 by Patrick Lucas (Data Artisans) and Ismaël Mejía 
(Talend) (<a href="https://twitter.com/iemejia";>@iemejia</a>)</p>
 
@@ -251,19 +264,6 @@
 
     <hr>
     
-    <article>
-      <h2 class="blog-title"><a 
href="/news/2016/09/05/release-1.1.2.html">Apache Flink 1.1.2 Released</a></h2>
-      <p>05 Sep 2016</p>
-
-      <p><p>The Apache Flink community released another bugfix version of the 
Apache Flink 1.1. series.</p>
-
-</p>
-
-      <p><a href="/news/2016/09/05/release-1.1.2.html">Continue reading 
&raquo;</a></p>
-    </article>
-
-    <hr>
-    
 
     <!-- Pagination links -->
     
@@ -296,6 +296,16 @@
 
     <ul id="markdown-toc">
       
+      <li><a href="/news/2017/06/01/release-1.3.0.html">Apache Flink 1.3.0 
Release Announcement</a></li>
+      
+      
+        
+      
+    
+      
+      
+
+      
       <li><a href="/news/2017/05/16/official-docker-image.html">Introducing 
Docker Images for Apache Flink</a></li>
       
       

http://git-wip-us.apache.org/repos/asf/flink-web/blob/4e75b86e/content/blog/page2/index.html
----------------------------------------------------------------------
diff --git a/content/blog/page2/index.html b/content/blog/page2/index.html
index e7f49e7..69c6f5a 100644
--- a/content/blog/page2/index.html
+++ b/content/blog/page2/index.html
@@ -90,20 +90,20 @@
 
             <!-- Documentation -->
             <!-- <li>
-              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2"; 
target="_blank">Documentation <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
+              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">Documentation <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
             </li> -->
             <li class="dropdown">
               <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation
                 <span class="caret"></span></a>
                 <ul class="dropdown-menu">
-                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2"; 
target="_blank">1.2 (Latest stable release) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
-                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">1.3 (Snapshot) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
+                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">1.3 (Latest stable release) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
+                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-master"; 
target="_blank">1.4 (Snapshot) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
                 </ul>
               </li>
 
             <!-- Quickstart -->
             <li>
-              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2/quickstart/setup_quickstart.html";
 target="_blank">Quickstart <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
+              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3/quickstart/setup_quickstart.html";
 target="_blank">Quickstart <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
             </li>
 
             <!-- GitHub -->
@@ -142,6 +142,19 @@
     <!-- Blog posts -->
     
     <article>
+      <h2 class="blog-title"><a 
href="/news/2016/09/05/release-1.1.2.html">Apache Flink 1.1.2 Released</a></h2>
+      <p>05 Sep 2016</p>
+
+      <p><p>The Apache Flink community released another bugfix version of the 
Apache Flink 1.1. series.</p>
+
+</p>
+
+      <p><a href="/news/2016/09/05/release-1.1.2.html">Continue reading 
&raquo;</a></p>
+    </article>
+
+    <hr>
+    
+    <article>
       <h2 class="blog-title"><a 
href="/news/2016/08/24/ff16-keynotes-panels.html">Flink Forward 2016: 
Announcing Schedule, Keynotes, and Panel Discussion</a></h2>
       <p>24 Aug 2016</p>
 
@@ -255,19 +268,6 @@
 
     <hr>
     
-    <article>
-      <h2 class="blog-title"><a 
href="/news/2016/03/08/release-1.0.0.html">Announcing Apache Flink 
1.0.0</a></h2>
-      <p>08 Mar 2016</p>
-
-      <p><p>The Apache Flink community is pleased to announce the availability 
of the 1.0.0 release. The community put significant effort into improving and 
extending Apache Flink since the last release, focusing on improving the 
experience of writing and executing data stream processing pipelines in 
production.</p>
-
-</p>
-
-      <p><a href="/news/2016/03/08/release-1.0.0.html">Continue reading 
&raquo;</a></p>
-    </article>
-
-    <hr>
-    
 
     <!-- Pagination links -->
     
@@ -300,6 +300,16 @@
 
     <ul id="markdown-toc">
       
+      <li><a href="/news/2017/06/01/release-1.3.0.html">Apache Flink 1.3.0 
Release Announcement</a></li>
+      
+      
+        
+      
+    
+      
+      
+
+      
       <li><a href="/news/2017/05/16/official-docker-image.html">Introducing 
Docker Images for Apache Flink</a></li>
       
       

http://git-wip-us.apache.org/repos/asf/flink-web/blob/4e75b86e/content/blog/page3/index.html
----------------------------------------------------------------------
diff --git a/content/blog/page3/index.html b/content/blog/page3/index.html
index 9060193..64da3ce 100644
--- a/content/blog/page3/index.html
+++ b/content/blog/page3/index.html
@@ -90,20 +90,20 @@
 
             <!-- Documentation -->
             <!-- <li>
-              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2"; 
target="_blank">Documentation <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
+              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">Documentation <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
             </li> -->
             <li class="dropdown">
               <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation
                 <span class="caret"></span></a>
                 <ul class="dropdown-menu">
-                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2"; 
target="_blank">1.2 (Latest stable release) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
-                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">1.3 (Snapshot) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
+                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">1.3 (Latest stable release) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
+                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-master"; 
target="_blank">1.4 (Snapshot) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
                 </ul>
               </li>
 
             <!-- Quickstart -->
             <li>
-              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2/quickstart/setup_quickstart.html";
 target="_blank">Quickstart <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
+              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3/quickstart/setup_quickstart.html";
 target="_blank">Quickstart <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
             </li>
 
             <!-- GitHub -->
@@ -142,6 +142,19 @@
     <!-- Blog posts -->
     
     <article>
+      <h2 class="blog-title"><a 
href="/news/2016/03/08/release-1.0.0.html">Announcing Apache Flink 
1.0.0</a></h2>
+      <p>08 Mar 2016</p>
+
+      <p><p>The Apache Flink community is pleased to announce the availability 
of the 1.0.0 release. The community put significant effort into improving and 
extending Apache Flink since the last release, focusing on improving the 
experience of writing and executing data stream processing pipelines in 
production.</p>
+
+</p>
+
+      <p><a href="/news/2016/03/08/release-1.0.0.html">Continue reading 
&raquo;</a></p>
+    </article>
+
+    <hr>
+    
+    <article>
       <h2 class="blog-title"><a 
href="/news/2016/02/11/release-0.10.2.html">Flink 0.10.2 Released</a></h2>
       <p>11 Feb 2016</p>
 
@@ -256,22 +269,6 @@ Apache Flink started.</p>
 
     <hr>
     
-    <article>
-      <h2 class="blog-title"><a 
href="/news/2015/08/24/introducing-flink-gelly.html">Introducing Gelly: Graph 
Processing with Apache Flink</a></h2>
-      <p>24 Aug 2015</p>
-
-      <p><p>This blog post introduces <strong>Gelly</strong>, Apache Flink’s 
<em>graph-processing API and library</em>. Flink’s native support
-for iterations makes it a suitable platform for large-scale graph analytics.
-By leveraging delta iterations, Gelly is able to map various graph processing 
models such as
-vertex-centric or gather-sum-apply to Flink dataflows.</p>
-
-</p>
-
-      <p><a href="/news/2015/08/24/introducing-flink-gelly.html">Continue 
reading &raquo;</a></p>
-    </article>
-
-    <hr>
-    
 
     <!-- Pagination links -->
     
@@ -304,6 +301,16 @@ vertex-centric or gather-sum-apply to Flink dataflows.</p>
 
     <ul id="markdown-toc">
       
+      <li><a href="/news/2017/06/01/release-1.3.0.html">Apache Flink 1.3.0 
Release Announcement</a></li>
+      
+      
+        
+      
+    
+      
+      
+
+      
       <li><a href="/news/2017/05/16/official-docker-image.html">Introducing 
Docker Images for Apache Flink</a></li>
       
       

http://git-wip-us.apache.org/repos/asf/flink-web/blob/4e75b86e/content/blog/page4/index.html
----------------------------------------------------------------------
diff --git a/content/blog/page4/index.html b/content/blog/page4/index.html
index a81145a..11efbc3 100644
--- a/content/blog/page4/index.html
+++ b/content/blog/page4/index.html
@@ -90,20 +90,20 @@
 
             <!-- Documentation -->
             <!-- <li>
-              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2"; 
target="_blank">Documentation <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
+              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">Documentation <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
             </li> -->
             <li class="dropdown">
               <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation
                 <span class="caret"></span></a>
                 <ul class="dropdown-menu">
-                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2"; 
target="_blank">1.2 (Latest stable release) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
-                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">1.3 (Snapshot) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
+                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">1.3 (Latest stable release) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
+                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-master"; 
target="_blank">1.4 (Snapshot) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
                 </ul>
               </li>
 
             <!-- Quickstart -->
             <li>
-              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2/quickstart/setup_quickstart.html";
 target="_blank">Quickstart <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
+              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3/quickstart/setup_quickstart.html";
 target="_blank">Quickstart <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
             </li>
 
             <!-- GitHub -->
@@ -142,6 +142,22 @@
     <!-- Blog posts -->
     
     <article>
+      <h2 class="blog-title"><a 
href="/news/2015/08/24/introducing-flink-gelly.html">Introducing Gelly: Graph 
Processing with Apache Flink</a></h2>
+      <p>24 Aug 2015</p>
+
+      <p><p>This blog post introduces <strong>Gelly</strong>, Apache Flink’s 
<em>graph-processing API and library</em>. Flink’s native support
+for iterations makes it a suitable platform for large-scale graph analytics.
+By leveraging delta iterations, Gelly is able to map various graph processing 
models such as
+vertex-centric or gather-sum-apply to Flink dataflows.</p>
+
+</p>
+
+      <p><a href="/news/2015/08/24/introducing-flink-gelly.html">Continue 
reading &raquo;</a></p>
+    </article>
+
+    <hr>
+    
+    <article>
       <h2 class="blog-title"><a 
href="/news/2015/06/24/announcing-apache-flink-0.9.0-release.html">Announcing 
Apache Flink 0.9.0</a></h2>
       <p>24 Jun 2015</p>
 
@@ -265,19 +281,6 @@ and offers a new API including definition of flexible 
windows.</p>
 
     <hr>
     
-    <article>
-      <h2 class="blog-title"><a 
href="/news/2015/01/21/release-0.8.html">Apache Flink 0.8.0 available</a></h2>
-      <p>21 Jan 2015</p>
-
-      <p><p>We are pleased to announce the availability of Flink 0.8.0. This 
release includes new user-facing features as well as performance and bug fixes, 
extends the support for filesystems and introduces the Scala API and flexible 
windowing semantics for Flink Streaming. A total of 33 people have contributed 
to this release, a big thanks to all of them!</p>
-
-</p>
-
-      <p><a href="/news/2015/01/21/release-0.8.html">Continue reading 
&raquo;</a></p>
-    </article>
-
-    <hr>
-    
 
     <!-- Pagination links -->
     
@@ -310,6 +313,16 @@ and offers a new API including definition of flexible 
windows.</p>
 
     <ul id="markdown-toc">
       
+      <li><a href="/news/2017/06/01/release-1.3.0.html">Apache Flink 1.3.0 
Release Announcement</a></li>
+      
+      
+        
+      
+    
+      
+      
+
+      
       <li><a href="/news/2017/05/16/official-docker-image.html">Introducing 
Docker Images for Apache Flink</a></li>
       
       

http://git-wip-us.apache.org/repos/asf/flink-web/blob/4e75b86e/content/blog/page5/index.html
----------------------------------------------------------------------
diff --git a/content/blog/page5/index.html b/content/blog/page5/index.html
index f3e5e9a..38b3a83 100644
--- a/content/blog/page5/index.html
+++ b/content/blog/page5/index.html
@@ -90,20 +90,20 @@
 
             <!-- Documentation -->
             <!-- <li>
-              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2"; 
target="_blank">Documentation <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
+              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">Documentation <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
             </li> -->
             <li class="dropdown">
               <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation
                 <span class="caret"></span></a>
                 <ul class="dropdown-menu">
-                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2"; 
target="_blank">1.2 (Latest stable release) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
-                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">1.3 (Snapshot) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
+                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">1.3 (Latest stable release) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
+                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-master"; 
target="_blank">1.4 (Snapshot) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
                 </ul>
               </li>
 
             <!-- Quickstart -->
             <li>
-              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2/quickstart/setup_quickstart.html";
 target="_blank">Quickstart <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
+              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3/quickstart/setup_quickstart.html";
 target="_blank">Quickstart <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
             </li>
 
             <!-- GitHub -->
@@ -142,6 +142,19 @@
     <!-- Blog posts -->
     
     <article>
+      <h2 class="blog-title"><a 
href="/news/2015/01/21/release-0.8.html">Apache Flink 0.8.0 available</a></h2>
+      <p>21 Jan 2015</p>
+
+      <p><p>We are pleased to announce the availability of Flink 0.8.0. This 
release includes new user-facing features as well as performance and bug fixes, 
extends the support for filesystems and introduces the Scala API and flexible 
windowing semantics for Flink Streaming. A total of 33 people have contributed 
to this release, a big thanks to all of them!</p>
+
+</p>
+
+      <p><a href="/news/2015/01/21/release-0.8.html">Continue reading 
&raquo;</a></p>
+    </article>
+
+    <hr>
+    
+    <article>
       <h2 class="blog-title"><a 
href="/news/2015/01/06/december-in-flink.html">December 2014 in the Flink 
community</a></h2>
       <p>06 Jan 2015</p>
 
@@ -254,6 +267,16 @@ academic and open source project that Flink originates 
from.</p>
 
     <ul id="markdown-toc">
       
+      <li><a href="/news/2017/06/01/release-1.3.0.html">Apache Flink 1.3.0 
Release Announcement</a></li>
+      
+      
+        
+      
+    
+      
+      
+
+      
       <li><a href="/news/2017/05/16/official-docker-image.html">Introducing 
Docker Images for Apache Flink</a></li>
       
       

http://git-wip-us.apache.org/repos/asf/flink-web/blob/4e75b86e/content/blog/release_1.0.0-changelog_known_issues.html
----------------------------------------------------------------------
diff --git a/content/blog/release_1.0.0-changelog_known_issues.html 
b/content/blog/release_1.0.0-changelog_known_issues.html
index 84c8a09..a46944f 100644
--- a/content/blog/release_1.0.0-changelog_known_issues.html
+++ b/content/blog/release_1.0.0-changelog_known_issues.html
@@ -90,20 +90,20 @@
 
             <!-- Documentation -->
             <!-- <li>
-              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2"; 
target="_blank">Documentation <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
+              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">Documentation <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
             </li> -->
             <li class="dropdown">
               <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation
                 <span class="caret"></span></a>
                 <ul class="dropdown-menu">
-                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2"; 
target="_blank">1.2 (Latest stable release) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
-                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">1.3 (Snapshot) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
+                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">1.3 (Latest stable release) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
+                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-master"; 
target="_blank">1.4 (Snapshot) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
                 </ul>
               </li>
 
             <!-- Quickstart -->
             <li>
-              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2/quickstart/setup_quickstart.html";
 target="_blank">Quickstart <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
+              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3/quickstart/setup_quickstart.html";
 target="_blank">Quickstart <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
             </li>
 
             <!-- GitHub -->

http://git-wip-us.apache.org/repos/asf/flink-web/blob/4e75b86e/content/blog/release_1.1.0-changelog.html
----------------------------------------------------------------------
diff --git a/content/blog/release_1.1.0-changelog.html 
b/content/blog/release_1.1.0-changelog.html
index b0901b7..427a76c 100644
--- a/content/blog/release_1.1.0-changelog.html
+++ b/content/blog/release_1.1.0-changelog.html
@@ -90,20 +90,20 @@
 
             <!-- Documentation -->
             <!-- <li>
-              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2"; 
target="_blank">Documentation <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
+              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">Documentation <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
             </li> -->
             <li class="dropdown">
               <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation
                 <span class="caret"></span></a>
                 <ul class="dropdown-menu">
-                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2"; 
target="_blank">1.2 (Latest stable release) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
-                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">1.3 (Snapshot) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
+                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">1.3 (Latest stable release) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
+                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-master"; 
target="_blank">1.4 (Snapshot) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
                 </ul>
               </li>
 
             <!-- Quickstart -->
             <li>
-              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2/quickstart/setup_quickstart.html";
 target="_blank">Quickstart <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
+              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3/quickstart/setup_quickstart.html";
 target="_blank">Quickstart <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
             </li>
 
             <!-- GitHub -->

http://git-wip-us.apache.org/repos/asf/flink-web/blob/4e75b86e/content/blog/release_1.2.0-changelog.html
----------------------------------------------------------------------
diff --git a/content/blog/release_1.2.0-changelog.html 
b/content/blog/release_1.2.0-changelog.html
index fad9237..84a3a42 100644
--- a/content/blog/release_1.2.0-changelog.html
+++ b/content/blog/release_1.2.0-changelog.html
@@ -90,20 +90,20 @@
 
             <!-- Documentation -->
             <!-- <li>
-              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2"; 
target="_blank">Documentation <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
+              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">Documentation <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
             </li> -->
             <li class="dropdown">
               <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation
                 <span class="caret"></span></a>
                 <ul class="dropdown-menu">
-                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2"; 
target="_blank">1.2 (Latest stable release) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
-                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">1.3 (Snapshot) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
+                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3"; 
target="_blank">1.3 (Latest stable release) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
+                  <li><a 
href="http://ci.apache.org/projects/flink/flink-docs-master"; 
target="_blank">1.4 (Snapshot) <small><span class="glyphicon 
glyphicon-new-window"></span></small></a></li>
                 </ul>
               </li>
 
             <!-- Quickstart -->
             <li>
-              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.2/quickstart/setup_quickstart.html";
 target="_blank">Quickstart <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
+              <a 
href="http://ci.apache.org/projects/flink/flink-docs-release-1.3/quickstart/setup_quickstart.html";
 target="_blank">Quickstart <small><span class="glyphicon 
glyphicon-new-window"></span></small></a>
             </li>
 
             <!-- GitHub -->

Reply via email to