Skip to content

Commit 6af7cfb

Browse files
authored
Fix/release version (#49)
* Update mkdocs.yml * Update pyproject.toml * fix test step in ci pipeline
1 parent 3cf3d13 commit 6af7cfb

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ jobs:
3333

3434
- name: Run tests with coverage
3535
run: |
36-
poetry run python -m pytest --junitxml=pytest.xml --cov-report=term-missing:skip-covered --cov=. tests/ | tee pytest-coverage.txt
36+
poetry run python -m pytest --junitxml=pytest.xml --cov-report=term-missing:skip-covered --cov=. tests/ > pytest-coverage.txt
37+
cat pytest-coverage.txt
3738
3839
- name: Generate coverage report & comment on PR
3940
id: coverageComment

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ nav:
4747
- Home: index.md
4848
- Release Notes:
4949
- Overview: release-notes.md
50+
- v2.0.0: release-notes/v2.0.0.md
5051
- v1.4.0: release-notes/v1.4.0.md
5152
- v1.3.2: release-notes/v1.3.2.md
5253
- v1.3.1: release-notes/v1.3.1.md

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "promptolution"
3-
version = "1.4.0"
3+
version = "2.0.0"
44
description = "A framework for prompt optimization and a zoo of prompt optimization algorithms."
55
authors = ["Tom Zehle, Moritz Schlager, Timo Heiß"]
66
readme = "README.md"

0 commit comments

Comments
 (0)