diff --git a/docs/api/overview.md b/docs/api/overview.md index 47abbd7a..16d8d77f 100644 --- a/docs/api/overview.md +++ b/docs/api/overview.md @@ -347,7 +347,7 @@ GET /health Response: { "status": "healthy", - "version": "0.1.3", + "version": "0.1.4", "timestamp": "2024-01-01T00:00:00Z", "checks": { "database": "ok", diff --git a/docs/contributing/code-structure.md b/docs/contributing/code-structure.md index 4b141b20..be2df5d5 100644 --- a/docs/contributing/code-structure.md +++ b/docs/contributing/code-structure.md @@ -348,7 +348,7 @@ Project metadata and dependencies: ```toml [project] name = "routstr" -version = "0.1.3" +version = "0.1.4" dependencies = [ "fastapi[standard]>=0.115", "sqlmodel>=0.0.24", diff --git a/docs/getting-started/quickstart.md b/docs/getting-started/quickstart.md index e179adcb..ba5d6751 100644 --- a/docs/getting-started/quickstart.md +++ b/docs/getting-started/quickstart.md @@ -67,7 +67,7 @@ You should see: { "name": "ARoutstrNode", "description": "A Routstr Node", - "version": "0.1.3", + "version": "0.1.4", "npub": "", "mints": ["https://mint.minibits.cash/Bitcoin"], "models": {...} diff --git a/pyproject.toml b/pyproject.toml index 1f554101..8d5843b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "routstr" -version = "0.1.3" +version = "0.1.4" description = "Payment proxy for your LLM endpoint using cashu and nostr." readme = "README.md" requires-python = ">=3.11" diff --git a/routstr/core/main.py b/routstr/core/main.py index b73b21b5..91a800f4 100644 --- a/routstr/core/main.py +++ b/routstr/core/main.py @@ -30,7 +30,7 @@ from .settings import settings as global_settings setup_logging() logger = get_logger(__name__) -__version__ = "0.1.3" +__version__ = "0.1.4-dev" @asynccontextmanager diff --git a/uv.lock b/uv.lock index b3f3170e..f8a0ed42 100644 --- a/uv.lock +++ b/uv.lock @@ -1783,7 +1783,7 @@ wheels = [ [[package]] name = "routstr" -version = "0.1.3" +version = "0.1.4" source = { editable = "." } dependencies = [ { name = "aiosqlite" },