diff --git a/Makefile b/Makefile index a276b168..312803a8 100644 --- a/Makefile +++ b/Makefile @@ -21,10 +21,14 @@ lint-templates: ## Lint template files version: ## Display the current version @hatch version -.PHONY: bump -bump: ## Bump the current version to a new minor one +.PHONY: patch +patch: ## Bump the current version to a new patch one @hatch version fix +.PHONY: minor +minor: ## Bump the current version to a new minor one + @hatch version minor + .PHONY: docker docker: ## Create a new Docker image and publish it $(eval VERSION=$(shell hatch version))