Skip to content

Commit 88d0cc8

Browse files
committed
Release 0.8.0b10
1 parent 94f6c5c commit 88d0cc8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: poetry run pytest ./tests/custom/
3838

3939
publish:
40-
needs: [compile]
40+
needs: [compile, test]
4141
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
4242
runs-on: ubuntu-20.04
4343
steps:

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 = "humanloop"
3-
version = "0.8.0b9"
3+
version = "0.8.0b10"
44
description = ""
55
readme = "README.md"
66
authors = []

src/humanloop/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_headers(self) -> typing.Dict[str, str]:
1616
headers: typing.Dict[str, str] = {
1717
"X-Fern-Language": "Python",
1818
"X-Fern-SDK-Name": "humanloop",
19-
"X-Fern-SDK-Version": "0.8.0b9",
19+
"X-Fern-SDK-Version": "0.8.0b10",
2020
}
2121
headers["X-API-KEY"] = self.api_key
2222
return headers

0 commit comments

Comments
 (0)