Skip to content

Commit

Permalink
Move version Makefile target
Browse files Browse the repository at this point in the history
  • Loading branch information
f-PLT committed May 1, 2024
1 parent 3daa9dd commit 71280dd
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,6 @@ help: ## print this help message (default)
.PHONY: targets
targets: help

.PHONY: version
version: ## display current version
@-echo "version: $(APP_VERSION)"


## -- Conda targets ------------------------------------------------------------------------------------------------- ##

.PHONY: install-conda
Expand Down Expand Up @@ -156,6 +151,10 @@ ifeq ($(filter dry, $(MAKECMDGOALS)), dry)
BUMP_ARGS := $(BUMP_ARGS) --dry-run --allow-dirty
endif

.PHONY: version
version: ## display current version
@-echo "version: $(APP_VERSION)"

.PHONY: bump-major
bump-major: ## Bump application major version <X.0.0>
$(BUMP_TOOL) $(BUMP_ARGS) major
Expand Down

0 comments on commit 71280dd

Please sign in to comment.