Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/QUICKSTART.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/repowise/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
AI-generated documentation.
"""

__version__ = "0.3.0"
__version__ = "0.3.1"
2 changes: 1 addition & 1 deletion packages/cli/src/repowise/cli/commands/serve_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/repowise/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
Namespace package: repowise.core is part of the repowise namespace.
"""

__version__ = "0.3.0"
__version__ = "0.3.1"
2 changes: 1 addition & 1 deletion packages/server/src/repowise/server/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
- Background job scheduler (APScheduler)
"""

__version__ = "0.3.0"
__version__ = "0.3.1"
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down
Loading