Skip to content

Commit c160cc1

Browse files
authored
Merge pull request #35 from replicate/release-please--branches--main--changes--next
release: 2.0.0-alpha.8
2 parents 5850549 + 789349d commit c160cc1

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
timeout-minutes: 10
1818
name: lint
1919
runs-on: ${{ github.repository == 'stainless-sdks/replicate-client-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
20+
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
2021
steps:
2122
- uses: actions/checkout@v4
2223

@@ -35,7 +36,7 @@ jobs:
3536
run: ./scripts/lint
3637

3738
upload:
38-
if: github.repository == 'stainless-sdks/replicate-client-python'
39+
if: github.repository == 'stainless-sdks/replicate-client-python' && (github.event_name == 'push' || github.event.pull_request.head.repo.fork)
3940
timeout-minutes: 10
4041
name: upload
4142
permissions:
@@ -62,6 +63,7 @@ jobs:
6263
timeout-minutes: 10
6364
name: test
6465
runs-on: ${{ github.repository == 'stainless-sdks/replicate-client-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
66+
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
6567
steps:
6668
- uses: actions/checkout@v4
6769

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "2.0.0-alpha.7"
2+
".": "2.0.0-alpha.8"
33
}

CHANGELOG.md

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

3+
## 2.0.0-alpha.8 (2025-06-30)
4+
5+
Full Changelog: [v2.0.0-alpha.7...v2.0.0-alpha.8](https://github.com/replicate/replicate-python-stainless/compare/v2.0.0-alpha.7...v2.0.0-alpha.8)
6+
7+
### Bug Fixes
8+
9+
* **ci:** correct conditional ([b21a288](https://github.com/replicate/replicate-python-stainless/commit/b21a288650ed46c6c2a72f5d4ff73ff66f81d371))
10+
11+
12+
### Chores
13+
14+
* **ci:** only run for pushes and fork pull requests ([33e1f74](https://github.com/replicate/replicate-python-stainless/commit/33e1f74f9c15cbd9102f95045f37061ef9d15504))
15+
316
## 2.0.0-alpha.7 (2025-06-27)
417

518
Full Changelog: [v2.0.0-alpha.6...v2.0.0-alpha.7](https://github.com/replicate/replicate-python-stainless/compare/v2.0.0-alpha.6...v2.0.0-alpha.7)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "replicate"
3-
version = "2.0.0-alpha.7"
3+
version = "2.0.0-alpha.8"
44
description = "The official Python library for the replicate API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/replicate/_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__ = "replicate"
4-
__version__ = "2.0.0-alpha.7" # x-release-please-version
4+
__version__ = "2.0.0-alpha.8" # x-release-please-version

0 commit comments

Comments
 (0)