Skip to content

Commit

Permalink
chore: release v2.35.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hassiebp committed Jun 7, 2024
1 parent 09407aa commit 5fb4157
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,22 @@ poetry run pre-commit install

### Publish release

#### Release script

Make sure you have your PyPi API token setup in your poetry config. If not, you can set it up by running:

```sh
poetry config pypi-token.pypi $your-api-token
```

Run the release script:

```sh
poetry run release
```

#### Manual steps (for prepatch versions)

1. `poetry version patch`
- `poetry version prepatch` for pre-release versions
2. `poetry install`
Expand Down
2 changes: 1 addition & 1 deletion langfuse/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""@private"""

__version__ = "2.35.0"
__version__ = "2.35.1"
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langfuse"
version = "2.35.0"
version = "2.35.1"
description = "A client library for accessing langfuse"
authors = ["langfuse <developers@langfuse.com>"]
license = "MIT"
Expand Down Expand Up @@ -64,3 +64,6 @@ build-backend = "poetry.core.masonry.api"
log_cli = true

[tool.poetry_bumpversion.file."langfuse/version.py"]

[tool.poetry.scripts]
release = "scripts.release:main"

0 comments on commit 5fb4157

Please sign in to comment.