diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index e5fb8493..e92ace9a 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -15,7 +15,7 @@ Thanks for your interest in contributing to Repowise! This guide will help you g ```bash # Clone the repo -git clone https://github.com/RaghavChamadiya/repowise.git +git clone https://github.com/repowise-dev/repowise.git cd repowise # Install Python dependencies @@ -94,7 +94,7 @@ repowise/ ## Reporting Issues -- Use [GitHub Issues](https://github.com/RaghavChamadiya/repowise/issues) for bugs and feature requests +- Use [GitHub Issues](https://github.com/repowise-dev/repowise/issues) for bugs and feature requests - For security vulnerabilities, see [SECURITY.md](SECURITY.md) ## License diff --git a/docs/QUICKSTART.md b/docs/QUICKSTART.md index 18d0adfe..5756bd1c 100644 --- a/docs/QUICKSTART.md +++ b/docs/QUICKSTART.md @@ -156,7 +156,7 @@ docker run -p 7337:7337 -p 3000:3000 \ ### From source (for development) ```bash -git clone https://github.com/RaghavChamadiya/repowise.git +git clone https://github.com/repowise-dev/repowise.git cd repowise && npm install # Terminal 1: API diff --git a/packages/cli/src/repowise/cli/__init__.py b/packages/cli/src/repowise/cli/__init__.py index 9283444b..1b3c4b9b 100644 --- a/packages/cli/src/repowise/cli/__init__.py +++ b/packages/cli/src/repowise/cli/__init__.py @@ -6,4 +6,4 @@ AI-generated documentation. """ -__version__ = "0.3.0" +__version__ = "0.3.1" diff --git a/packages/cli/src/repowise/cli/commands/serve_cmd.py b/packages/cli/src/repowise/cli/commands/serve_cmd.py index 9da2e3c7..f10274b0 100644 --- a/packages/cli/src/repowise/cli/commands/serve_cmd.py +++ b/packages/cli/src/repowise/cli/commands/serve_cmd.py @@ -155,7 +155,7 @@ def _save_global_embedder(embedder: str, api_key: str) -> None: pass # Non-fatal — user just gets prompted again next time. -_GITHUB_REPO = "RaghavChamadiya/repowise" +_GITHUB_REPO = "repowise-dev/repowise" _WEB_CACHE_DIR = Path.home() / ".repowise" / "web" _MARKER_FILE = _WEB_CACHE_DIR / ".version" diff --git a/packages/core/src/repowise/core/__init__.py b/packages/core/src/repowise/core/__init__.py index 5120e796..60ec9c61 100644 --- a/packages/core/src/repowise/core/__init__.py +++ b/packages/core/src/repowise/core/__init__.py @@ -6,4 +6,4 @@ Namespace package: repowise.core is part of the repowise namespace. """ -__version__ = "0.3.0" +__version__ = "0.3.1" diff --git a/packages/server/src/repowise/server/__init__.py b/packages/server/src/repowise/server/__init__.py index af5ac956..918e31ee 100644 --- a/packages/server/src/repowise/server/__init__.py +++ b/packages/server/src/repowise/server/__init__.py @@ -7,4 +7,4 @@ - Background job scheduler (APScheduler) """ -__version__ = "0.3.0" +__version__ = "0.3.1" diff --git a/pyproject.toml b/pyproject.toml index e7981103..ef8208dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "repowise" -version = "0.3.0" +version = "0.3.1" description = "Codebase intelligence for developers and AI — generates and maintains a structured wiki for any codebase" readme = "README.md" requires-python = ">=3.11" @@ -113,10 +113,10 @@ dev = [ repowise = "repowise.cli.main:cli" [project.urls] -Homepage = "https://github.com/RaghavChamadiya/repowise" -Repository = "https://github.com/RaghavChamadiya/repowise" -Issues = "https://github.com/RaghavChamadiya/repowise/issues" -Documentation = "https://github.com/RaghavChamadiya/repowise/blob/main/docs/USER_GUIDE.md" +Homepage = "https://github.com/repowise-dev/repowise" +Repository = "https://github.com/repowise-dev/repowise" +Issues = "https://github.com/repowise-dev/repowise/issues" +Documentation = "https://github.com/repowise-dev/repowise/blob/main/docs/USER_GUIDE.md" # --------------------------------------------------------------------------- # setuptools — explicit package-dir mapping across three src/ directories