From 30897858534192df7180cb2053fe955c42d73b42 Mon Sep 17 00:00:00 2001 From: Sho Nakatani Date: Tue, 9 Jun 2026 06:25:48 +0900 Subject: [PATCH] chore: migrate publishing and repo references from SecDev-Lab to AgenticSec Update GitHub org URLs (github.com/SecDev-Lab/sprout -> github.com/AgenticSec/sprout) across the release workflow, CHANGELOG compare links, README, and docs, and set the package author to AgenticSec, following the move of the project and its PyPI publishing account to the AgenticSec org. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/release.yml | 6 +++--- CHANGELOG.md | 14 +++++++------- README.md | 2 +- docs/release-workflow.md | 2 +- docs/sprout-cli/usage.md | 2 +- pyproject.toml | 2 +- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ee0ff7e..4e112db 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -218,8 +218,8 @@ jobs: # Update comparison link echo "" >> CHANGELOG.md - echo "[${{ needs.prepare-release.outputs.version }}]: https://github.com/SecDev-Lab/sprout/compare/v${{ needs.prepare-release.outputs.version }}...HEAD" >> CHANGELOG.md - sed -i "s|\[Unreleased\]:.*|[Unreleased]: https://github.com/SecDev-Lab/sprout/compare/v${{ needs.prepare-release.outputs.version }}...HEAD|" CHANGELOG.md + echo "[${{ needs.prepare-release.outputs.version }}]: https://github.com/AgenticSec/sprout/compare/v${{ needs.prepare-release.outputs.version }}...HEAD" >> CHANGELOG.md + sed -i "s|\[Unreleased\]:.*|[Unreleased]: https://github.com/AgenticSec/sprout/compare/v${{ needs.prepare-release.outputs.version }}...HEAD|" CHANGELOG.md - name: Commit version updates run: | @@ -272,7 +272,7 @@ jobs: --- - **Full Changelog**: https://github.com/SecDev-Lab/sprout/compare/v0.1.0...v${{ needs.prepare-release.outputs.version }} + **Full Changelog**: https://github.com/AgenticSec/sprout/compare/v0.1.0...v${{ needs.prepare-release.outputs.version }} draft: false prerelease: ${{ github.event.inputs.prerelease == 'true' }} files: | diff --git a/CHANGELOG.md b/CHANGELOG.md index 4aff17f..caf83cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -122,15 +122,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - CI/CD pipeline with GitHub Actions - Support for Python 3.11, 3.12, and 3.13 -[Unreleased]: https://github.com/SecDev-Lab/sprout/compare/v0.7.0...HEAD -[0.2.0]: https://github.com/SecDev-Lab/sprout/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/AgenticSec/sprout/compare/v0.7.0...HEAD +[0.2.0]: https://github.com/AgenticSec/sprout/compare/v0.2.0...HEAD -[0.3.0]: https://github.com/SecDev-Lab/sprout/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/AgenticSec/sprout/compare/v0.3.0...HEAD -[0.4.0]: https://github.com/SecDev-Lab/sprout/compare/v0.4.0...HEAD +[0.4.0]: https://github.com/AgenticSec/sprout/compare/v0.4.0...HEAD -[0.5.0]: https://github.com/SecDev-Lab/sprout/compare/v0.5.0...HEAD +[0.5.0]: https://github.com/AgenticSec/sprout/compare/v0.5.0...HEAD -[0.6.0]: https://github.com/SecDev-Lab/sprout/compare/v0.6.0...HEAD +[0.6.0]: https://github.com/AgenticSec/sprout/compare/v0.6.0...HEAD -[0.7.0]: https://github.com/SecDev-Lab/sprout/compare/v0.7.0...HEAD +[0.7.0]: https://github.com/AgenticSec/sprout/compare/v0.7.0...HEAD diff --git a/README.md b/README.md index ac8f6ec..1de0f6e 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ pip install sprout-cli For development: ```bash # Clone the repository -git clone https://github.com/SecDev-Lab/sprout.git +git clone https://github.com/AgenticSec/sprout.git cd sprout # Install in development mode diff --git a/docs/release-workflow.md b/docs/release-workflow.md index dc0b6a4..a065ba6 100644 --- a/docs/release-workflow.md +++ b/docs/release-workflow.md @@ -32,7 +32,7 @@ Before releasing, ensure all changes are documented in the `[Unreleased]` sectio ### 2. Trigger Release -1. Go to the [Actions tab](https://github.com/SecDev-Lab/sprout/actions) in your GitHub repository +1. Go to the [Actions tab](https://github.com/AgenticSec/sprout/actions) in your GitHub repository 2. Click on "Release" workflow in the left sidebar 3. Click "Run workflow" button 4. Configure the release options: diff --git a/docs/sprout-cli/usage.md b/docs/sprout-cli/usage.md index b073075..acd8ec3 100644 --- a/docs/sprout-cli/usage.md +++ b/docs/sprout-cli/usage.md @@ -7,7 +7,7 @@ pip install sprout # Development installation -git clone https://github.com/SecDev-Lab/sprout.git +git clone https://github.com/AgenticSec/sprout.git cd sprout pip install -e ".[dev]" ``` diff --git a/pyproject.toml b/pyproject.toml index 87d1400..534399d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ readme = "README.md" requires-python = ">=3.11" license = {text = "MIT"} authors = [ - {name = "SecDevLab Inc."}, + {name = "AgenticSec"}, ] classifiers = [ "Development Status :: 3 - Alpha",