Skip to content

Commit

Permalink
Bump version 0.38.1 -> 0.38.2
Browse files Browse the repository at this point in the history
  • Loading branch information
FollowTheProcess committed May 30, 2023
1 parent 99e4450 commit 3da30af
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
18 changes: 10 additions & 8 deletions .tag.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
version = "0.38.1"
version = '0.38.2'

[git]
default-branch = "main"
message-template = "Bump version {{.Current}} -> {{.Next}}"
tag-template = "v{{.Next}}"
default-branch = 'main'
message-template = 'Bump version 0.38.1 -> 0.38.2'
tag-template = 'v0.38.2'

[[file]]
path = "pyproject.toml"
search = 'version = "{{.Current}}"'
path = 'pyproject.toml'
search = 'version = "0.38.1"'
- = 'version = "0.38.2"'

[[file]]
path = "src/pytoil/__init__.py"
search = '__version__ = "{{.Current}}"'
path = 'src/pytoil/__init__.py'
search = '__version__ = "0.38.1"'
- = '__version__ = "0.38.2"'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ requires = [

[project]
name = "pytoil"
version = "0.38.1"
version = "0.38.2"
description = "CLI to automate the development workflow."
readme = "README.md"
keywords = [
Expand Down
2 changes: 1 addition & 1 deletion src/pytoil/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

from __future__ import annotations

__version__ = "0.38.1"
__version__ = "0.38.2"

0 comments on commit 3da30af

Please sign in to comment.