Skip to content

Commit ffd48b2

Browse files
authored
Merge pull request #43 from brand-dot-dev/release-please--branches--main--changes--next
release: 1.36.1
2 parents e83609d + 3f36e2f commit ffd48b2

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,18 @@ jobs:
6161
run: rye build
6262

6363
- name: Get GitHub OIDC Token
64-
if: github.repository == 'stainless-sdks/brand.dev-python'
64+
if: |-
65+
github.repository == 'stainless-sdks/brand.dev-python' &&
66+
!startsWith(github.ref, 'refs/heads/stl/')
6567
id: github-oidc
6668
uses: actions/github-script@v8
6769
with:
6870
script: core.setOutput('github_token', await core.getIDToken());
6971

7072
- name: Upload tarball
71-
if: github.repository == 'stainless-sdks/brand.dev-python'
73+
if: |-
74+
github.repository == 'stainless-sdks/brand.dev-python' &&
75+
!startsWith(github.ref, 'refs/heads/stl/')
7276
env:
7377
URL: https://pkg.stainless.com/s
7478
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-
".": "1.36.0"
2+
".": "1.36.1"
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+
## 1.36.1 (2026-03-07)
4+
5+
Full Changelog: [v1.36.0...v1.36.1](https://github.com/brand-dot-dev/python-sdk/compare/v1.36.0...v1.36.1)
6+
7+
### Chores
8+
9+
* **ci:** skip uploading artifacts on stainless-internal branches ([d4eb82a](https://github.com/brand-dot-dev/python-sdk/commit/d4eb82a95117381b0f3ef3c8a06a7716370b654c))
10+
311
## 1.36.0 (2026-03-01)
412

513
Full Changelog: [v1.35.0...v1.36.0](https://github.com/brand-dot-dev/python-sdk/compare/v1.35.0...v1.36.0)

pyproject.toml

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

src/brand/dev/_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__ = "brand.dev"
4-
__version__ = "1.36.0" # x-release-please-version
4+
__version__ = "1.36.1" # x-release-please-version

0 commit comments

Comments
 (0)