Skip to content

Commit a8e5ecd

Browse files
author
semantic-release
committed
0.1.0
Automatically generated by python-semantic-release
1 parent 7f741fb commit a8e5ecd

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

pyproject.toml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "det"
3-
version = "0.1.5"
3+
version = "0.1.0"
44
description = "A framework to analyse the consistency of repeated requests to an LLM or LLM based Agent"
55
authors = ["Matthew Thompson <[email protected]>"]
66
license = "MIT"
@@ -32,9 +32,17 @@ build-backend = "poetry.core.masonry.api"
3232
det = "det.main:app"
3333

3434
[tool.semantic_release]
35-
version_variable = "pyproject.toml:version"
36-
upload_to_pypi = true
35+
version_variable = [
36+
"det/__init__.py:__version__"
37+
]
38+
version_toml = [
39+
"pyproject.toml:tool.poetry.version"
40+
]
41+
version_pattern = [
42+
"README.md:rev: v{version}"
43+
]
44+
major_on_zero = false
3745
branch = "main"
38-
repository = "https://github.com/thompsonson/det"
39-
commit_message = "{version}\n\nAutomatically generated by python-semantic-release"
40-
commit_parser = "angular"
46+
upload_to_PyPI = true
47+
upload_to_release = true
48+
build_command = "make cicd_setup && make install && poetry build"

0 commit comments

Comments
 (0)