Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .backportrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"upstream": "apache/druid",
"branches": [
{ "name": "0.16.0-incubating", "checked": true },
{ "name": "0.17.0-incubating", "checked": true }
{ "name": "0.16.1-incubating", "checked": true },
{ "name": "0.17.0", "checked": true }
]
}
339 changes: 83 additions & 256 deletions distribution/asf-release-process-guide.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion distribution/bin/find-missing-backports.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def find_next_url(links):

if len(sys.argv) != 5:
sys.stderr.write('usage: program <github-username> <previous-release-branch> <current-release-branch> <milestone-number>\n')
sys.stderr.write(" e.g., program myusername 0.14.0-incubating 0.15.0-incubating 30")
sys.stderr.write(" e.g., program myusername 0.17.0 0.18.0 30")
sys.stderr.write(" It is also necessary to set a GIT_TOKEN environment variable containing a personal access token.")
sys.exit(1)

Expand Down
2 changes: 1 addition & 1 deletion distribution/bin/get-milestone-prs.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

if len(sys.argv) != 5:
sys.stderr.write('usage: program <github-username> <upstream-remote> <previous-release-branch> <current-release-branch>\n')
sys.stderr.write(" e.g., program myusername upstream 0.13.0-incubating 0.14.0-incubating")
sys.stderr.write(" e.g., program myusername upstream 0.17.0 0.18.0")
sys.stderr.write(" It is also necessary to set a GIT_TOKEN environment variable containing a personal access token.")
sys.exit(1)

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ First, download and unpack the release archive. It's best to do this on a single
since you will be editing the configurations and then copying the modified distribution out to all
of your servers.

[Download](https://www.apache.org/dyn/closer.cgi?path=/incubator/druid/{{DRUIDVERSION}}/apache-druid-{{DRUIDVERSION}}-bin.tar.gz)
[Download](https://www.apache.org/dyn/closer.cgi?path=/druid/{{DRUIDVERSION}}/apache-druid-{{DRUIDVERSION}}-bin.tar.gz)
the {{DRUIDVERSION}} release.

Extract Druid by running the following commands in your terminal:
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ configuration than `micro-quickstart`.

## Getting started

[Download](https://www.apache.org/dyn/closer.cgi?path=/incubator/druid/{{DRUIDVERSION}}/apache-druid-{{DRUIDVERSION}}-bin.tar.gz)
[Download](https://www.apache.org/dyn/closer.cgi?path=/druid/{{DRUIDVERSION}}/apache-druid-{{DRUIDVERSION}}-bin.tar.gz)
the {{DRUIDVERSION}} release.

Extract Druid by running the following commands in your terminal:
Expand Down
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<connection>scm:git:ssh://git@github.com/apache/druid.git</connection>
<developerConnection>scm:git:ssh://git@github.com/apache/druid.git</developerConnection>
<url>https://github.com/apache/druid.git</url>
<tag>0.13.0-incubating-SNAPSHOT</tag>
<tag>0.18.0-SNAPSHOT</tag>
</scm>

<properties>
Expand Down Expand Up @@ -1490,7 +1490,6 @@
</properties>
<resourceBundles>
<resourceBundle>org.apache.apache.resources:apache-jar-resource-bundle:1.5-SNAPSHOT</resourceBundle>
<resourceBundle>org.apache.apache.resources:apache-incubator-disclaimer-resource-bundle:1.2-SNAPSHOT</resourceBundle>
</resourceBundles>
</configuration>
</execution>
Expand Down
2 changes: 1 addition & 1 deletion website/script/fix-path.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
const replace = require('replace-in-file');

if (process.argv.length !== 4) {
console.log('Usage: node fix-path.js latest 0.16.0-incubating');
console.log('Usage: node fix-path.js latest 0.17.0');
process.exit(1);
}

Expand Down