From d1e62f923a28488be02d61eaf99c11862e77ae43 Mon Sep 17 00:00:00 2001 From: d33bs Date: Sun, 29 Mar 2026 17:15:15 -0600 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a35540f..a455541 100644 --- a/README.md +++ b/README.md @@ -172,7 +172,7 @@ To make this work for your repository: Then users can install directly from a release asset URL: ```sql -INSTALL 'https://github.com/d33bs/duckdb_zarr/releases/download/v0.1.0/duckdb_zarr-v1.5.0-osx_arm64.duckdb_extension.gz'; +INSTALL 'https://github.com/wayscience/duckdb_zarr/releases/download/v0.1.0/duckdb_zarr-v1.5.0-osx_arm64.duckdb_extension.gz'; LOAD duckdb_zarr; ``` @@ -196,13 +196,13 @@ To publish a new installable extension release from this repository: - package platform-specific `.duckdb_extension.gz` assets - upload those assets to the matching GitHub Release 4. Verify that a published artifact path exists, for example: - `https://github.com/d33bs/duckdb_zarr/releases/download/v0.1.0/duckdb_zarr-v1.5.0-osx_arm64.duckdb_extension.gz` + `https://github.com/wayscience/duckdb_zarr/releases/download/v0.1.0/duckdb_zarr-v1.5.0-osx_arm64.duckdb_extension.gz` 5. Optionally add human-readable release notes. The installable path is the GitHub Release asset itself. After that, users can install the extension with: ```sql -INSTALL 'https://github.com/d33bs/duckdb_zarr/releases/download/v0.1.0/duckdb_zarr-v1.5.0-osx_arm64.duckdb_extension.gz'; +INSTALL 'https://github.com/wayscience/duckdb_zarr/releases/download/v0.1.0/duckdb_zarr-v1.5.0-osx_arm64.duckdb_extension.gz'; LOAD duckdb_zarr; ```