diff --git a/Makefile b/Makefile index e3724cc..ba57835 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ BLUR ?= 0 .DEFAULT_GOAL := help -.PHONY: help build run up stop down logs log ps test test-mask dev sync shell clean fmt testpub +.PHONY: help build run up stop down logs log ps test test-mask dev sync shell clean fmt testpub bump help: ## Show this help @grep -E '^[a-zA-Z_-]+:.*?## ' $(MAKEFILE_LIST) \ @@ -57,6 +57,9 @@ clean: ## Stop the service and remove build artifacts -$(COMPOSE) down rm -f $(OUTPUT) mask.png +bump: ## Bump the patch version in pyproject.toml (0.0.1 -> 0.0.2) + uv version --bump patch + testpub: ## Publish dist/ to TestPyPI (UV_PUBLISH_TOKEN from .env) uv build set -a && . ./.env && set +a && \ diff --git a/pyproject.toml b/pyproject.toml index 4ce9b28..8deba0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "rmbg-as-a-service" -version = "0.0.1" +version = "0.0.2" description = "Background removal as a GPU-accelerated API" readme = "README.md" requires-python = ">=3.12" diff --git a/src/rmbg_as_a_service/static/index.html b/src/rmbg_as_a_service/static/index.html index ee987df..c475011 100644 --- a/src/rmbg_as_a_service/static/index.html +++ b/src/rmbg_as_a_service/static/index.html @@ -56,8 +56,8 @@ diff --git a/uv.lock b/uv.lock index 4988960..3b3227f 100644 --- a/uv.lock +++ b/uv.lock @@ -1163,7 +1163,7 @@ wheels = [ [[package]] name = "rmbg-as-a-service" -version = "0.0.1" +version = "0.0.2" source = { editable = "." } dependencies = [ { name = "einops" },