Skip to content

Commit 83836c4

Browse files
Merge pull request #23 from CASParser/release-please--branches--main--changes--next
release: 1.12.0
2 parents 5e93a68 + e7b5428 commit 83836c4

7 files changed

Lines changed: 22 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
lint:
1919
timeout-minutes: 10
2020
name: lint
21-
runs-on: ${{ github.repository == 'stainless-sdks/cas-parser-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
21+
runs-on: ${{ startsWith(github.repository, 'stainless-sdks/') && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
2222
if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata')
2323
steps:
2424
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -41,7 +41,7 @@ jobs:
4141
permissions:
4242
contents: read
4343
id-token: write
44-
runs-on: ${{ github.repository == 'stainless-sdks/cas-parser-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
44+
runs-on: ${{ startsWith(github.repository, 'stainless-sdks/') && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
4545
steps:
4646
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4747

@@ -78,7 +78,7 @@ jobs:
7878
test:
7979
timeout-minutes: 10
8080
name: test
81-
runs-on: ${{ github.repository == 'stainless-sdks/cas-parser-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
81+
runs-on: ${{ startsWith(github.repository, 'stainless-sdks/') && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
8282
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
8383
steps:
8484
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

.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.11.0"
2+
".": "1.12.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 21
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cas-parser/cas-parser-904e3aa8081755d046016db9d84d13d140a4235c724e18e1cd7f8ebb7712883e.yml
3-
openapi_spec_hash: 453b8e667c364b064e04352ad4deccfa
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cas-parser/cas-parser-902b4d5af31c8c6bab33a08d9cea10f3444be221abf735466eb9fd58a14e0a87.yml
3+
openapi_spec_hash: e333f46097f3a3a452cb4d6564a3db67
44
config_hash: 5509bb7a961ae2e79114b24c381606d4

CHANGELOG.md

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

3+
## 1.12.0 (2026-07-18)
4+
5+
Full Changelog: [v1.11.0...v1.12.0](https://github.com/CASParser/cas-parser-python/compare/v1.11.0...v1.12.0)
6+
7+
### Features
8+
9+
* **stlc:** configurable CI runner and private-production-repo support in workflow templates ([8af3718](https://github.com/CASParser/cas-parser-python/commit/8af3718c0ec8748968f412683b73ce530edd3a4a))
10+
11+
12+
### Bug Fixes
13+
14+
* **internal:** resolve build failures ([0318675](https://github.com/CASParser/cas-parser-python/commit/0318675bbf3ff0b4faa30cb952a08d3137f320ac))
15+
316
## 1.11.0 (2026-06-18)
417

518
Full Changelog: [v1.10.0...v1.11.0](https://github.com/CASParser/cas-parser-python/compare/v1.10.0...v1.11.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 = "cas-parser-python"
3-
version = "1.11.0"
3+
version = "1.12.0"
44
description = "The official Python library for the cas-parser API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

scripts/lint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ else
1313
fi
1414

1515
echo "==> Running pyright"
16-
uv run pyright
16+
uv run pyright -p .
1717

1818
echo "==> Running mypy"
1919
uv run mypy .

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.11.0" # x-release-please-version
4+
__version__ = "1.12.0" # x-release-please-version

0 commit comments

Comments
 (0)