Skip to content

Commit 5ae9375

Browse files
Merge pull request #16 from CASParser/release-please--branches--main--changes--next
release: 1.6.2
2 parents 22abd6f + cb43f86 commit 5ae9375

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
@@ -55,14 +55,18 @@ jobs:
5555
run: uv build
5656

5757
- name: Get GitHub OIDC Token
58-
if: github.repository == 'stainless-sdks/cas-parser-python'
58+
if: |-
59+
github.repository == 'stainless-sdks/cas-parser-python' &&
60+
!startsWith(github.ref, 'refs/heads/stl/')
5961
id: github-oidc
6062
uses: actions/github-script@v8
6163
with:
6264
script: core.setOutput('github_token', await core.getIDToken());
6365

6466
- name: Upload tarball
65-
if: github.repository == 'stainless-sdks/cas-parser-python'
67+
if: |-
68+
github.repository == 'stainless-sdks/cas-parser-python' &&
69+
!startsWith(github.ref, 'refs/heads/stl/')
6670
env:
6771
URL: https://pkg.stainless.com/s
6872
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.6.1"
2+
".": "1.6.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+
## 1.6.2 (2026-03-07)
4+
5+
Full Changelog: [v1.6.1...v1.6.2](https://github.com/CASParser/cas-parser-python/compare/v1.6.1...v1.6.2)
6+
7+
### Chores
8+
9+
* **ci:** skip uploading artifacts on stainless-internal branches ([a3b3292](https://github.com/CASParser/cas-parser-python/commit/a3b329233e5e5f10acd8aad8d888de2112475af1))
10+
311
## 1.6.1 (2026-03-03)
412

513
Full Changelog: [v1.6.0...v1.6.1](https://github.com/CASParser/cas-parser-python/compare/v1.6.0...v1.6.1)

pyproject.toml

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

src/cas_parser/_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__ = "cas_parser"
4-
__version__ = "1.6.1" # x-release-please-version
4+
__version__ = "1.6.2" # x-release-please-version

0 commit comments

Comments
 (0)