Skip to content

Commit 7da12f2

Browse files
authored
Merge pull request #633 from runloopai/release-please--branches--main--changes--next
release: 0.56.2
2 parents bd619c2 + 8d92b21 commit 7da12f2

6 files changed

Lines changed: 16 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: ./scripts/lint
3737

3838
build:
39-
if: github.repository == 'stainless-sdks/runloop-python' && (github.event_name == 'push' || github.event.pull_request.head.repo.fork)
39+
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
4040
timeout-minutes: 10
4141
name: build
4242
permissions:
@@ -61,12 +61,14 @@ jobs:
6161
run: rye build
6262

6363
- name: Get GitHub OIDC Token
64+
if: github.repository == 'stainless-sdks/runloop-python'
6465
id: github-oidc
6566
uses: actions/github-script@v6
6667
with:
6768
script: core.setOutput('github_token', await core.getIDToken());
6869

6970
- name: Upload tarball
71+
if: github.repository == 'stainless-sdks/runloop-python'
7072
env:
7173
URL: https://pkg.stainless.com/s
7274
AUTH: ${{ steps.github-oidc.outputs.github_token }}

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.56.1-beta"
2+
".": "0.56.2"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.56.2 (2025-08-25)
4+
5+
Full Changelog: [v0.56.1-beta...v0.56.2](https://github.com/runloopai/api-client-python/compare/v0.56.1-beta...v0.56.2)
6+
7+
### Chores
8+
9+
* update github action ([d0a51b8](https://github.com/runloopai/api-client-python/commit/d0a51b81c7cda9e63bc4c6a314effbdfadacd7b2))
10+
311
## 0.56.1-beta (2025-08-21)
412

513
Full Changelog: [v0.55.2...v0.56.1-beta](https://github.com/runloopai/api-client-python/compare/v0.55.2...v0.56.1-beta)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The REST API documentation can be found on [runloop.ai](https://runloop.ai). The
1717

1818
```sh
1919
# install from PyPI
20-
pip install --pre runloop_api_client
20+
pip install runloop_api_client
2121
```
2222

2323
## Usage
@@ -73,7 +73,7 @@ You can enable this by installing `aiohttp`:
7373

7474
```sh
7575
# install from PyPI
76-
pip install --pre runloop_api_client[aiohttp]
76+
pip install runloop_api_client[aiohttp]
7777
```
7878

7979
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "runloop_api_client"
3-
version = "0.56.1-beta"
3+
version = "0.56.2"
44
description = "The official Python library for the runloop API"
55
dynamic = ["readme"]
66
license = "MIT"

src/runloop_api_client/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "runloop_api_client"
4-
__version__ = "0.56.1-beta" # x-release-please-version
4+
__version__ = "0.56.2" # x-release-please-version

0 commit comments

Comments
 (0)