This is an automated email from the ASF dual-hosted git repository.
mwalch pushed a commit to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/fluo-website.git
The following commit(s) were added to refs/heads/gh-pages by this push:
new 65986e9 Adding draft release notes for Fluo 1.2.0 (#84)
65986e9 is described below
commit 65986e93cdd69368131ba2bbb4fa1e94dd6b1336
Author: Mike Walch <[email protected]>
AuthorDate: Mon Sep 25 14:25:13 2017 -0400
Adding draft release notes for Fluo 1.2.0 (#84)
---
_layouts/release.html | 4 +++
_posts/release/2017-09-22-fluo-1.2.0.md | 43 +++++++++++++++++++++++++++++++++
feed.xml | 3 ++-
index.html | 3 ++-
pages/news.html | 3 ++-
pages/release.md | 2 +-
6 files changed, 54 insertions(+), 4 deletions(-)
diff --git a/_layouts/release.html b/_layouts/release.html
index b1f37d4..be8f5b1 100644
--- a/_layouts/release.html
+++ b/_layouts/release.html
@@ -7,6 +7,10 @@ layout: default
<p><a class="twitter-share-button"
href="https://twitter.com/intent/tweet?text={{ page.title }}&url={{ site.url
}}{{ page.url }}&via={{ site.twitter_username }}&related={{
site.twitter_username }}" rel="nofollow" target="_blank" title="Share on
Twitter">Twitter</a></p>
</div>
+{% if page.draft %}
+<div class="alert alert-danger" style="margin-bottom: 0px;" role="alert">These
are draft release notes for a future release! <a href="{{ site.baseurl
}}/release/">View the latest releases</a>.</div>
+{% endif %}
+
{% if page.historical %}
<div class="alert alert-danger" role="alert">This release was made before
Apache incubation and is not endorsed by the ASF.</div>
{% endif %}
diff --git a/_posts/release/2017-09-22-fluo-1.2.0.md
b/_posts/release/2017-09-22-fluo-1.2.0.md
new file mode 100644
index 0000000..4e34fe7
--- /dev/null
+++ b/_posts/release/2017-09-22-fluo-1.2.0.md
@@ -0,0 +1,43 @@
+---
+title: Apache Fluo 1.2.0 released
+date: 2017-09-22 15:00:00 +0000
+version: fluo-1.2.0
+draft: true
+---
+
+Below are resources for this release:
+
+ * Download a release tarball and verify by these [procedures] using these
[KEYS]
+
+ | [fluo-1.2.0-bin.tar.gz][bin-release] | [ASC][bin-asc]
[MD5][bin-md5] [SHA][bin-sha] |
+ | [fluo-1.2.0-source-release.tar.gz][src-release] | [ASC][src-asc]
[MD5][src-md5] [SHA][src-sha] |
+ * View the [documentation][docs] for this release.
+ * Read the [Javadocs][javadocs].
+
+Apache Fluo follows [semver](http://semver.org/) for its API . The API consists
+of everything under the `org.apache.fluo.api` package. Code outside of this
+package can change at any time. If your project is using Fluo code that falls
+outside of the API, then consider [initiating a discussion](/getinvolved/)
+about adding it to the API.
+
+## Significant changes
+
+The major changes in 1.2.0 are highlighted here, for the complete list of
changes, see the [1.2.0
+Milestone] on Github.
+
+## Testing
+
+[procedures]: https://www.apache.org/info/verification
+[KEYS]: https://www.apache.org/dist/fluo/KEYS
+[bin-release]:
https://www.apache.org/dyn/closer.lua/fluo/fluo/1.2.0/fluo-1.2.0-bin.tar.gz
+[bin-asc]:
https://www.apache.org/dist/fluo/fluo/1.2.0/fluo-1.2.0-bin.tar.gz.asc
+[bin-md5]:
https://www.apache.org/dist/fluo/fluo/1.2.0/fluo-1.2.0-bin.tar.gz.md5
+[bin-sha]:
https://www.apache.org/dist/fluo/fluo/1.2.0/fluo-1.2.0-bin.tar.gz.sha
+[src-release]:
https://www.apache.org/dyn/closer.lua/fluo/fluo/1.2.0/fluo-1.2.0-source-release.tar.gz
+[src-asc]:
https://www.apache.org/dist/fluo/fluo/1.2.0/fluo-1.2.0-source-release.tar.gz.asc
+[src-md5]:
https://www.apache.org/dist/fluo/fluo/1.2.0/fluo-1.2.0-source-release.tar.gz.md5
+[src-sha]:
https://www.apache.org/dist/fluo/fluo/1.2.0/fluo-1.2.0-source-release.tar.gz.sha
+[javadocs]: {{ site.fluo_api_base }}/1.2.0/
+[docs]: /docs/fluo/1.2.0/
+[semver]: http://semver.org/
+[1.2.0 Milestone]: https://github.com/apache/fluo/milestone/6?closed=1
diff --git a/feed.xml b/feed.xml
index 022378b..de56169 100644
--- a/feed.xml
+++ b/feed.xml
@@ -11,7 +11,8 @@ layout: null
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<generator>Jekyll v{{ jekyll.version }}</generator>
- {% for post in site.posts limit:10 %}
+ {% assign visible_posts = site.posts | where:"draft",false %}
+ {% for post in visible_posts limit:10 %}
<item>
<title>{{ post.title | xml_escape }}</title>
<description>{{ post.content | xml_escape }}</description>
diff --git a/index.html b/index.html
index 251d1b5..0dd1b92 100644
--- a/index.html
+++ b/index.html
@@ -18,7 +18,8 @@ html_title_override: true
<div class="row">
<div class="col-sm-12 panel panel-default">
<h3 id="news-header">Latest News</h3>
- {% for post in site.posts limit:site.num_home_posts %}
+ {% assign visible_posts = site.posts | where:"draft",false %}
+ {% for post in visible_posts limit:site.num_home_posts %}
<div class="post-header-home">
<div class="row">
<div class="col-sm-12">
diff --git a/pages/news.html b/pages/news.html
index 786bf25..d3d4858 100644
--- a/pages/news.html
+++ b/pages/news.html
@@ -6,7 +6,8 @@ redirect_from: /blog/
<h2>{{ page.title }}</h2>
-{% for post in site.posts %}
+{% assign visible_posts = site.posts | where:"draft",false %}
+{% for post in visible_posts %}
{% assign post_year = post.date | date: "%Y" %}
{% assign newer_post_year = post.next.date | date: "%Y" %}
{% if post_year != newer_post_year %}
diff --git a/pages/release.md b/pages/release.md
index ecc28b0..2a16335 100644
--- a/pages/release.md
+++ b/pages/release.md
@@ -7,7 +7,7 @@ permalink: "/release/"
Apache Fluo and Apache Fluo Recipes are released separately on their own
schedule.
{% for release in site.categories.release %}
-{% unless release.historical %}
+{% unless release.historical or release.draft %}
* [{{ release.version }}]({{ site.baseurl }}/release/{{ release.version }}/) -
{{ release.date | date_to_string }}
{% endunless %}
{% endfor %}
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].