This is an automated email from the ASF dual-hosted git repository.
kranti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iggy-website.git
The following commit(s) were added to refs/heads/main by this push:
new fac3f93a1 style(repo): Add Downloads page to Apache Iggy website (#17)
fac3f93a1 is described below
commit fac3f93a11f2119457890e0e73e48edf4f8c9ad2
Author: Jerzy Nowak <[email protected]>
AuthorDate: Thu Jul 10 02:33:19 2025 +0200
style(repo): Add Downloads page to Apache Iggy website (#17)
---
docusaurus.config.ts | 1 +
src/pages/downloads.md | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 79 insertions(+)
diff --git a/docusaurus.config.ts b/docusaurus.config.ts
index c6419b1e4..5ec2ca8fc 100644
--- a/docusaurus.config.ts
+++ b/docusaurus.config.ts
@@ -93,6 +93,7 @@ const config: Config = {
label: "Docs",
},
{ to: "/blogs", label: "Blogs", position: "left" },
+ { to: "/downloads", label: "Downloads", position: "left" },
{
href: "https://benchmarks.iggy.rs",
label: "Benchmarks",
diff --git a/src/pages/downloads.md b/src/pages/downloads.md
new file mode 100644
index 000000000..a79d19f93
--- /dev/null
+++ b/src/pages/downloads.md
@@ -0,0 +1,78 @@
+---
+title: Downloads
+description: Official release artifacts of Apache Iggy (Incubating)
+---
+
+# Apache Iggy (Incubating) Downloads
+
+The Apache Iggy project publishes source‑code releases as compressed archives
(`.tar.gz`). Binary convenience builds may appear in the future, but **the only
official artifacts today are the source packages signed by Iggy committers and
mirrored by the Apache Software Foundation.**
+
+---
+
+## Releases
+
+| Version | Date (UTC) | Source archive |
Signatures & checksums |
+|---------|-----------------|----------------|--------------------------------------|
+| **0.4.300-incubating** *(latest)* | 2025-04-15 |
[`iggy-0.4.300-incubating-src.tar.gz`](https://downloads.apache.org/incubator/iggy/0.4.300/iggy-0.4.300-incubating-src.tar.gz)
|
[`asc`](https://downloads.apache.org/incubator/iggy/0.4.300/iggy-0.4.300-incubating-src.tar.gz.asc),
[`sha512`](https://downloads.apache.org/incubator/iggy/0.4.300/iggy-0.4.300-incubating-src.tar.gz.sha512)
|
+
+Older incubating releases will appear in the same [downloads
directory](https://downloads.apache.org/incubator/iggy/) after they are
approved by the Apache Incubator PMC. Permanent archives are kept at
[archive.apache.org](https://archive.apache.org/); none exist yet because
0.4.300 is the first release.
+
+---
+
+## Notes
+
+- **Verify before use.** Always check the OpenPGP **signature** (`.asc`) or,
if that is not possible, at least the **SHA‑512 checksum**.
+- The [`KEYS`](https://downloads.apache.org/incubator/iggy/KEYS) file contains
all public keys used to sign Iggy releases. Import it once; only new keys need
to be added in future releases.
+- Because Iggy is still in the Apache Incubator, releases are **incubating
releases** and are not yet official ASF products. They are distributed under
the Incubator’s rules and may evolve rapidly.
+
+---
+
+### Verify the signature
+
+```bash
+# Download artifact, matching .asc file and KEYS
+curl -O https://downloads.apache.org/incubator/iggy/KEYS
+curl -O
https://downloads.apache.org/incubator/iggy/0.4.300/iggy-0.4.300-incubating-src.tar.gz
+curl -O
https://downloads.apache.org/incubator/iggy/0.4.300/iggy-0.4.300-incubating-src.tar.gz.asc
+
+# Import Iggy release keys
+gpg --import KEYS
+
+# Verify signature
+gpg --verify iggy-0.4.300-incubating-src.tar.gz.asc
iggy-0.4.300-incubating-src.tar.gz
+```
+
+A successful verification prints **"Good signature from …"** and the
fingerprint of an Iggy committer’s key.
+
+---
+
+### Verify the checksum
+
+```bash
+curl -O
https://downloads.apache.org/incubator/iggy/0.4.300/iggy-0.4.300-incubating-src.tar.gz.sha512
+shasum -a 512 -c iggy-0.4.300-incubating-src.tar.gz.sha512
+```
+
+The command should output:
+
+```
+iggy-0.4.300-incubating-src.tar.gz: OK
+```
+
+---
+
+## Need bleeding-edge code?
+
+The latest development code is available from the `main` branch on GitHub:
+
+```bash
+git clone https://github.com/apache/iggy.git
+```
+
+Be aware that trunk builds **may be unstable and are not ASF‑endorsed
releases**.
+
+---
+
+© 2025 The Apache Software Foundation.
+Apache, Apache Iggy, the Apache feather logo, and related marks are trademarks
of the ASF.
+