Skip to content

Commit 51e7067

Browse files
clintropolisjihoonson
authored andcommitted
0.14.2-incubating download links, docs (#604)
* 0.14.2-incubating download links, docs * casing * update date * rework * fix * fix * update date * ship it
1 parent ebbb59c commit 51e7067

File tree

380 files changed

+29208
-68
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

380 files changed

+29208
-68
lines changed

_config.yml

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
exclude:
2-
- CNAME
3-
41
name: Druid
52

63
permalink: /blog/:year/:month/:day/:title.html
@@ -10,6 +7,7 @@ redcarpet:
107
extensions: ["tables", "no_intra_emphasis", "fenced_code_blocks", "with_toc_data"]
118

129
exclude:
10+
- CNAME
1311
- Gemfile
1412
- Gemfile.lock
1513
- README.md
@@ -22,13 +20,21 @@ highlighter: pygments
2220
title: 'Druid'
2321
description: 'Real²time Exploratory Analytics on Large Datasets'
2422

23+
2524
druid_versions:
26-
- version: 0.14.1-incubating
27-
date: 2019-05-09
28-
- version: 0.14.0-incubating
29-
date: 2019-04-09
30-
- version: 0.13.0-incubating
31-
date: 2018-12-18
25+
- release: 0.14
26+
versions:
27+
- version: 0.14.2-incubating
28+
date: 2019-05-27
29+
- version: 0.14.1-incubating
30+
date: 2019-05-09
31+
- version: 0.14.0-incubating
32+
date: 2019-04-09
33+
- release: 0.13
34+
versions:
35+
- version: 0.13.0-incubating
36+
date: 2018-12-18
37+
3238

3339
tranquility_stable_version: 0.8.3
3440

_includes/news-list.html

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,21 @@
44
<h3>
55
Latest releases
66
</h3>
7-
{% for release in site.druid_versions limit:5 %}
7+
{% assign ctr = 0 %}
8+
{% assign max = 5 %}
9+
{% for branch in site.druid_versions %}
10+
{% if ctr < max %}
11+
{% for release in branch.versions %}
12+
{% if ctr < max %}
13+
{% assign ctr = ctr | plus:1 %}
814
<p>
915
<a href="https://github.com/apache/incubator-druid/releases/tag/druid-{{ release.version }}">
1016
<span class="title">Apache Druid (incubating) {{ release.version | remove: "-incubating"}} Released</span><br>
1117
<span class="text-muted">{{ release.date | date: "%b %e %Y" }}</span>
1218
</a>
1319
</p>
20+
{% endif %}
21+
{% endfor %}
22+
{% endif %}
1423
{% endfor %}
1524
</div>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
layout: redirect_page
3+
redirect_target: development/experimental.html
4+
---
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
layout: redirect_page
3+
redirect_target: querying/aggregations.html
4+
---
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
layout: redirect_page
3+
redirect_target: development/extensions-core/approximate-histograms.html
4+
---
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
layout: redirect_page
3+
redirect_target: ingestion/batch-ingestion.html
4+
---
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
layout: redirect_page
3+
redirect_target: tutorials/cluster.html
4+
---
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
layout: redirect_page
3+
redirect_target: configuration/index.html#broker
4+
---

docs/0.14.2-incubating/Broker.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
layout: redirect_page
3+
redirect_target: design/broker.html
4+
---
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
layout: redirect_page
3+
redirect_target: development/build.html
4+
---

0 commit comments

Comments
 (0)