This repository has been archived by the owner on Apr 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #198 from griptape-ai/release/v0.22.0
Release/v0.22.0
- Loading branch information
Showing
30 changed files
with
1,429 additions
and
636 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
publish: | ||
.PHONY: version | ||
version: ## Bump version and push to release branch. | ||
@poetry version $(v) | ||
@git add pyproject.toml | ||
@git commit -m "Version bump v$$(poetry version -s)" | ||
@git push origin release/v$$(poetry version -s) | ||
|
||
.PHONY: publish | ||
publish: ## Push git tag | ||
@git tag v$$(poetry version -s) | ||
@git push | ||
@git push --tags | ||
|
||
.DEFAULT_GOAL := help | ||
.PHONY: help | ||
help: ## Print Makefile help text. | ||
@# Matches targets with a comment in the format <target>: ## <comment> | ||
@# then formats help output using these values. | ||
@grep -E '^[a-zA-Z_\/-]+:.*?## .*$$' $(MAKEFILE_LIST) \ | ||
| awk 'BEGIN {FS = ":.*?## "}; \ | ||
{printf "\033[36m%-12s\033[0m%s\n", $$1, $$2}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.