This is an automated email from the ASF dual-hosted git repository.

asorokoumov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/otava-website.git

commit f3ed0d3c09cf4ff8506ffed7dd33c93bbfd23bf4
Author: Alex Sorokoumov <[email protected]>
AuthorDate: Sun Feb 1 20:29:47 2026 -0800

    Add downloads page
---
 docs/download.md     | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 docs/sidebars.ts     |  5 ++++
 docusaurus.config.ts |  6 ++++
 3 files changed, 92 insertions(+)

diff --git a/docs/download.md b/docs/download.md
new file mode 100644
index 0000000..0064dad
--- /dev/null
+++ b/docs/download.md
@@ -0,0 +1,81 @@
+---
+sidebar_label: Download
+sidebar_position: 99
+---
+
+# Download Apache Otava (Incubating)
+
+Apache Otava is released as source code tarballs with corresponding binary 
convenience artifacts. The latest release is available below.
+
+All releases are available under the [Apache License, Version 
2.0](https://www.apache.org/licenses/LICENSE-2.0).
+
+## Verify Releases
+
+You can verify releases using the provided signatures and checksums. The 
[KEYS](https://downloads.apache.org/incubator/otava/KEYS) file contains the 
public PGP keys for signature verification. See [How to 
Verify](https://www.apache.org/info/verification.html) for details.
+
+## Latest Release
+
+### 0.7.0 (Latest)
+
+Released: January 2025
+
+| Package | Download | Signature | Checksum |
+|---------|----------|-----------|----------|
+| Source | 
[apache-otava-0.7.0-incubating-src.tar.gz](https://dist.apache.org/repos/dist/dev/incubator/otava/0.7.0-incubating/apache-otava-0.7.0-incubating-src.tar.gz)
 | 
[asc](https://dist.apache.org/repos/dist/dev/incubator/otava/0.7.0-incubating/apache-otava-0.7.0-incubating-src.tar.gz.asc)
 | 
[sha512](https://dist.apache.org/repos/dist/dev/incubator/otava/0.7.0-incubating/apache-otava-0.7.0-incubating-src.tar.gz.sha512)
 |
+
+**Other ways to install:**
+
+- **PyPI**: `pip install apache-otava==0.7.0`
+- **Docker**: `docker pull apache/otava:0.7.0`
+
+[Release Notes](https://github.com/apache/otava/releases/tag/0.7.0-incubating) 
| [Documentation](/docs/getting-started)
+
+## All Releases
+
+All Apache Otava releases are available from the [Apache Download 
Archive](https://archive.apache.org/dist/incubator/otava/).
+
+| Version | Release Date  | Download | Release Notes |
+|---------|---------------|----------|---------------|
+| 0.7.0 | December 2025 | 
[Source](https://dist.apache.org/repos/dist/dev/incubator/otava/0.7.0-incubating/apache-otava-0.7.0-incubating-src.tar.gz)
 
([asc](https://dist.apache.org/repos/dist/dev/incubator/otava/0.7.0-incubating/apache-otava-0.7.0-incubating-src.tar.gz.asc),
 
[sha512](https://dist.apache.org/repos/dist/dev/incubator/otava/0.7.0-incubating/apache-otava-0.7.0-incubating-src.tar.gz.sha512))
 | [Notes](https://github.com/apache/otava/releases/tag/0.7.0-incubating) |
+| 0.6.1 | July 2025     | 
[Source](https://dist.apache.org/repos/dist/dev/incubator/otava/0.6.1-incubating/apache-otava-incubating-0.6.1-rc1-src.tar.gz)
 
([asc](https://dist.apache.org/repos/dist/dev/incubator/otava/0.6.1-incubating/apache-otava-incubating-0.6.1-rc1-src.tar.gz.asc),
 
[sha512](https://dist.apache.org/repos/dist/dev/incubator/otava/0.6.1-incubating/apache-otava-incubating-0.6.1-rc1-src.tar.gz.sha512))
 |  |
+| 0.6.0 | June 2025     | 
[Source](https://dist.apache.org/repos/dist/dev/incubator/otava/0.6.0-incubating/apache-otava-incubating-0.6.0-rc5-src.tar.gz)
 
([asc](https://dist.apache.org/repos/dist/dev/incubator/otava/0.6.0-incubating/apache-otava-incubating-0.6.0-rc5-src.tar.gz.asc),
 
[sha512](https://dist.apache.org/repos/dist/dev/incubator/otava/0.6.0-incubating/apache-otava-incubating-0.6.0-rc5-src.tar.gz.sha512))
 |  |
+
+## Install from PyPI
+
+The recommended way to install Apache Otava for most users is via PyPI:
+
+```bash
+pip install apache-otava
+```
+
+For a specific version:
+
+```bash
+pip install apache-otava==0.7.0
+```
+
+## Install from Docker
+
+Pull the official Docker image from Docker Hub:
+
+```bash
+docker pull apache/otava
+```
+
+For a specific version:
+
+```bash
+docker pull apache/otava:0.7.0
+```
+
+## Build from Source
+
+To build Apache Otava from source, clone the repository and install:
+
+```bash
+git clone https://github.com/apache/otava.git
+cd otava
+pip install -e .
+```
+
+For more details, see the [Installation Guide](/docs/install) and [Getting 
Started](/docs/getting-started) documentation.
diff --git a/docs/sidebars.ts b/docs/sidebars.ts
index 5e5e0d3..bd3237d 100644
--- a/docs/sidebars.ts
+++ b/docs/sidebars.ts
@@ -27,6 +27,11 @@ const sidebars: SidebarsConfig = {
       id: "overview",
       label: "About",
     },
+    {
+      type: "doc",
+      id: "download",
+      label: "Download",
+    },
     {
       type: "category",
       label: "Getting Started",
diff --git a/docusaurus.config.ts b/docusaurus.config.ts
index dbe0d91..af88850 100644
--- a/docusaurus.config.ts
+++ b/docusaurus.config.ts
@@ -84,6 +84,12 @@ const config: Config = {
           position: "right",
           label: "Docs",
         },
+        {
+          type: "doc",
+          docId: "download",
+          position: "right",
+          label: "Download",
+        },
         {
           type: "doc",
           docId: "community",

Reply via email to