This is an automated email from the ASF dual-hosted git repository. skrawcz pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/hamilton.git
commit 66302562944b83c94ccb9e95b427ba9fd3dd7621 Author: Stefan Krawczyk <[email protected]> AuthorDate: Sat Oct 18 14:13:32 2025 -0700 Adds downloads to docs We missed this in the initial ASF setup. --- docs/asf/downloads.rst | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++ docs/asf/index.rst | 2 ++ docs/index.md | 7 +++++++ 3 files changed, 66 insertions(+) diff --git a/docs/asf/downloads.rst b/docs/asf/downloads.rst new file mode 100644 index 00000000..124f29db --- /dev/null +++ b/docs/asf/downloads.rst @@ -0,0 +1,57 @@ +================ +Downloads +================ + +Official Apache Hamilton releases are available at the Apache Software Foundation distribution site. + +Release Downloads +----------------- + +All releases can be found at: `https://downloads.apache.org/incubator/hamilton/ <https://downloads.apache.org/incubator/hamilton/>`_ + +Each release includes: + +- Source distributions (.tar.gz, .zip) +- Checksums (SHA512) +- Digital signatures (.asc) + +Verifying Releases +------------------ + +To verify the integrity of downloaded files, you can: + +1. Verify the checksum matches the published SHA512 sum +2. Verify the GPG signature using the KEYS file available at the downloads site + +Release History +--------------- + +Visit the `downloads directory <https://downloads.apache.org/incubator/hamilton/>`_ to see all available releases. + +Installation +------------ + +After downloading and verifying a release, you can install it using pip: + +.. code-block:: bash + + pip install apache-hamilton-<version>.tar.gz + +Or install directly from PyPI: + +.. code-block:: bash + + pip install apache-hamilton + +For more information about installation options, see the :doc:`Get Started guide </get-started/index>`. + +Official Releases +----------------- + +The following are the official Apache Hamilton releases: + +- **1.89.0** (2025-10-11) - First Apache Hamilton release + + - `Source (tar.gz) <https://downloads.apache.org/incubator/hamilton/1.89.0/apache-hamilton-1.89.0-incubating.tar.gz>`_ + - `Checksums <https://downloads.apache.org/incubator/hamilton/1.89.0/apache-hamilton-1.89.0-incubating.tar.gz.sha512>`_ + - `Signature <https://downloads.apache.org/incubator/hamilton/1.89.0/apache-hamilton-1.89.0-incubating.tar.gz.asc>`_ diff --git a/docs/asf/index.rst b/docs/asf/index.rst index fc0ae30e..c3b039fd 100644 --- a/docs/asf/index.rst +++ b/docs/asf/index.rst @@ -10,6 +10,7 @@ Apache Software Foundation links. :glob: :hidden: + downloads Apache Software Foundation <https://www.apache.org/> License <https://www.apache.org/licenses/> Events <https://www.apache.org/events/current-event.html> @@ -19,6 +20,7 @@ Apache Software Foundation links. Thanks <https://www.apache.org/foundation/thanks.html> Code of Conduct <https://www.apache.org/foundation/policies/conduct.html> +- :doc:`Downloads <downloads>` - `Foundation <https://www.apache.org/>`_ - `License <https://www.apache.org/licenses/>`_ - `Events <https://www.apache.org/events/current-event.html>`_ diff --git a/docs/index.md b/docs/index.md index e7f452f6..659e4ea4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -39,6 +39,13 @@ integrations/index code-comparisons/index ``` +```{toctree} +:hidden: True +:caption: DOWNLOADS + +asf/downloads +``` + ```{toctree} :hidden: True :caption: PDF
