From 06ed30d6dc1f9b462e45dfc8bee8180b9dcdba22 Mon Sep 17 00:00:00 2001 From: Lucas Vieira Date: Fri, 2 Jan 2026 17:17:04 -0300 Subject: [PATCH] Rename sisypha to faisca across project Update GitHub organization references from sisypha to faiscadev in: - install.sh: Update repository URL for releases - README.md: Update installation script and releases URLs - Cargo.toml: Update repository field --- Cargo.toml | 2 +- README.md | 4 ++-- install.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 111cb63..2fe990b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.4" edition = "2021" authors = ["Lucas Vieira "] description = "A CLI tool for tailing and querying Datadog logs" -repository = "https://github.com/sisypha/ddlogs" +repository = "https://github.com/faiscadev/ddlogs" license = "Apache-2.0" keywords = ["datadog", "logs", "cli", "tail", "monitoring"] categories = ["command-line-utilities", "development-tools"] diff --git a/README.md b/README.md index 23aca23..b8209ba 100644 --- a/README.md +++ b/README.md @@ -22,12 +22,12 @@ cargo install ddlogs ### Using install script ```bash -curl -fsSL https://raw.githubusercontent.com/sisypha/ddlogs/main/install.sh | sh +curl -fsSL https://raw.githubusercontent.com/faiscadev/ddlogs/main/install.sh | sh ``` ### Download pre-built binaries -Download the latest release from [GitHub Releases](https://github.com/sisypha/ddlogs/releases). +Download the latest release from [GitHub Releases](https://github.com/faiscadev/ddlogs/releases). ## Configuration diff --git a/install.sh b/install.sh index bf70930..080847e 100644 --- a/install.sh +++ b/install.sh @@ -39,7 +39,7 @@ case "$OS" in esac # Get latest version from GitHub -REPO="sisypha/ddlogs" +REPO="faiscadev/ddlogs" LATEST_URL="https://api.github.com/repos/$REPO/releases/latest" echo "Fetching latest release..."