Skip to content

Commit a24441c

Browse files
Merge pull request #8 from tracereq/fix-toml-config
Fix toml config
2 parents ed9f04a + 609d0fe commit a24441c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "tracereq-sdk"
9-
version = "1.0.0"
9+
version = "1.0.2"
1010
description = "Python client for TraceReq (https://tracereq.com)"
1111
readme = "README.md"
1212
authors = [
@@ -31,7 +31,7 @@ dev = ["pip-tools"]
3131
Homepage = "https://github.com/tracereq/python-tracereq-sdk"
3232

3333
[tool.bumpver]
34-
current_version = "1.0.1"
34+
current_version = "1.0.2"
3535
version_pattern = "MAJOR.MINOR.PATCH"
3636
commit_message = "bump version {old_version} -> {new_version}"
3737
tag_message = "{new_version}"
@@ -43,5 +43,6 @@ push = false
4343
[tool.bumpver.file_patterns]
4444
"pyproject.toml" = [
4545
'current_version = "{version}"',
46+
'version = "{version}"',
4647
]
4748
"tracereq_sdk/__init__.py" = ["{version}"]

tracereq_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
"init"
66
]
77

8-
__version__ = "1.0.1"
8+
__version__ = "1.0.2"

0 commit comments

Comments
 (0)