SHELL := /bin/bash
VERSION := $(shell uv version --short)

init:
	git init
	uv venv --prompt drf-cedar
	uv run pre-commit install

test:
	uv run pytest

tag:
	git tag -a v$(VERSION) -m "Release version $(VERSION)"

patch:
	uv version --bump patch

minor:
	uv version --bump minor

major:
	uv version --bump major

build:
	uv build
