Skip to content

Commit bc44843

Browse files
committed
Release 0.1.1
1 parent 3c42655 commit bc44843

File tree

4 files changed

+5
-29
lines changed

4 files changed

+5
-29
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -36,30 +36,6 @@ jobs:
3636
- name: Test
3737
run: poetry run pytest -rP .
3838

39-
publish-to-testpypi:
40-
needs: [compile, test]
41-
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
42-
runs-on: ubuntu-20.04
43-
steps:
44-
- name: Checkout repo
45-
uses: actions/checkout@v3
46-
- name: Set up python
47-
uses: actions/setup-python@v4
48-
with:
49-
python-version: 3.8
50-
- name: Bootstrap poetry
51-
run: |
52-
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
53-
- name: Install dependencies
54-
run: poetry install
55-
- name: Publish to testpypi
56-
run: |
57-
poetry config repositories.test-pypi https://test.pypi.org/legacy/
58-
poetry --no-interaction -v publish --build --repository test-pypi --username "$TEST_PYPI_USERNAME" --password "$TEST_PYPI_PASSWORD"
59-
env:
60-
PYPI_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }}
61-
PYPI_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}
62-
6339
publish:
6440
needs: [compile, test]
6541
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "murf"
33

44
[tool.poetry]
55
name = "murf"
6-
version = "0.1.0"
6+
version = "0.1.1"
77
description = ""
88
readme = "README.md"
99
authors = []

src/murf/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": "murf",
19-
"X-Fern-SDK-Version": "0.1.0",
19+
"X-Fern-SDK-Version": "0.1.1",
2020
}
2121
if self._api_key is not None:
2222
headers["api-key"] = self._api_key

0 commit comments

Comments
 (0)