Skip to content

Commit

Permalink
bump: version 0.3.2 → 0.4.0-a0
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyhuy committed Apr 20, 2024
1 parent 9b8dc15 commit 156c300
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,29 +49,29 @@ build: install
build-image:
docker compose build

tag-release:
tag-release: install
git branch --force -D release/$(shell git describe --tags --abbrev=0)
git checkout -b release/$(shell git describe --tags --abbrev=0)
git push --set-upstream origin release/$(shell git describe --tags --abbrev=0)
git push --tags

bump-prerelease:
bump-prerelease: install
$(VENV) python -m commitizen bump --yes -pr alpha
git push --tags

bump-major:
bump-major: install
git checkout main
git checkout -b release/$(shell git describe --tags --abbrev=0)
$(VENV) python -m commitizen bump --yes --increment major
git push --tags

bump-minor:
bump-minor: install
git checkout main
git checkout -b release/$(shell git describe --tags --abbrev=0)
$(VENV) python -m commitizen bump --yes --increment minor
git push --tags

bump-patch:
bump-patch: install
git checkout main
git checkout -b release/$(shell git describe --tags --abbrev=0)
$(VENV) python -m commitizen bump --yes --increment patch
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ transcribe-me = "transcribe_me.main:main"

[project]
name = "transcribe-me"
version = "0.3.2"
version = "0.4.0-a0"
authors = [{ name = "echoHello", email = "[email protected]" }]
description = "A CLI tool to transcribe audio files using OpenAI API"
readme = "README.md"
Expand Down Expand Up @@ -33,7 +33,7 @@ dependencies = [
packages = ["transcribe_me"]

[tool.commitizen]
version = "0.3.2"
version = "0.4.0-a0"
tag_format = "v$major.$minor.$patch$prerelease"
update_changelog_on_bump = false
version_files = ["pyproject.toml:^version"]
Expand Down

0 comments on commit 156c300

Please sign in to comment.