Skip to content

Commit ef8b342

Browse files
authored
Merge pull request #44 from cooper-square-technologies/release-please--branches--main--changes--next
release: 0.33.1
2 parents 76d1fc8 + be97827 commit ef8b342

6 files changed

Lines changed: 15 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
timeout-minutes: 10
2020
name: lint
2121
runs-on: ${{ github.repository == 'stainless-sdks/profound-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
22-
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
22+
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@v6
2525

@@ -35,7 +35,7 @@ jobs:
3535
run: ./scripts/lint
3636

3737
build:
38-
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
38+
if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata')
3939
timeout-minutes: 10
4040
name: build
4141
permissions:

.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.33.0"
2+
".": "0.33.1"
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/profound%2Fprofound-060d7cfc1e35a0dd50dd6407c3bffc85ba8f9141973aa17981e9a5d772c2a29d.yml
3-
openapi_spec_hash: da36e2144d0e2f36518bf1b4f8090b0b
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/profound%2Fprofound-393b32c9862a851f9701030c2de2d57037f58120ec664f58a1db904967130a6e.yml
3+
openapi_spec_hash: 63c56d136b1c5cf4eba459e3a1a0caba
44
config_hash: f683a29859356d6968a19ae3e6063b63

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.33.1 (2026-03-24)
4+
5+
Full Changelog: [v0.33.0...v0.33.1](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.33.0...v0.33.1)
6+
7+
### Chores
8+
9+
* **ci:** skip lint on metadata-only changes ([a20efb9](https://github.com/cooper-square-technologies/profound-python-sdk/commit/a20efb95231f1659ddc1c736b71568bba51a659f))
10+
311
## 0.33.0 (2026-03-23)
412

513
Full Changelog: [v0.32.0...v0.33.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.32.0...v0.33.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 = "profound"
3-
version = "0.33.0"
3+
version = "0.33.1"
44
description = "The official Python library for the profound API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/profound/_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__ = "profound"
4-
__version__ = "0.33.0" # x-release-please-version
4+
__version__ = "0.33.1" # x-release-please-version

0 commit comments

Comments
 (0)