Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.53.0"
".": "0.54.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 102
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/profound/profound-17587551addb077f3da29dd969fcd5f57c7272b4d3d3b1707dca00b1d04b7ee8.yml
openapi_spec_hash: 261e4f33ccaac115058a54ffc28ad9f6
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/profound/profound-732a8e32462a734c87a048d4a9c89fb143f682cf14954c6bc630b498cbc03e2a.yml
openapi_spec_hash: 6a6b5b86761a9d35f60869e5b1e8c090
config_hash: 48130b77367435ca80edf565b73c49f9
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.54.0 (2026-07-14)

Full Changelog: [v0.53.0...v0.54.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.53.0...v0.54.0)

### Features

* **api:** api update ([bedb038](https://github.com/cooper-square-technologies/profound-python-sdk/commit/bedb0380d42036914f5b548f24d3e056a7672f19))


### Bug Fixes

* **internal:** resolve build failures ([a3e6d1f](https://github.com/cooper-square-technologies/profound-python-sdk/commit/a3e6d1f6665d12629d8c16e90bcc946b18b089bb))

## 0.53.0 (2026-07-13)

Full Changelog: [v0.52.0...v0.53.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.52.0...v0.53.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "profound"
version = "0.53.0"
version = "0.54.0"
description = "The official Python library for the profound API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion scripts/lint
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ else
fi

echo "==> Running pyright"
uv run pyright
uv run pyright -p .

echo "==> Running mypy"
uv run mypy .
Expand Down
2 changes: 1 addition & 1 deletion src/profound/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "profound"
__version__ = "0.53.0" # x-release-please-version
__version__ = "0.54.0" # x-release-please-version
2 changes: 2 additions & 0 deletions src/profound/resources/reports/shopping.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ def item_visibility(
dimensions: List[
Literal[
"period",
"product_key",
"product_name",
"brand_name",
"date",
Expand Down Expand Up @@ -1129,6 +1130,7 @@ async def item_visibility(
dimensions: List[
Literal[
"period",
"product_key",
"product_name",
"brand_name",
"date",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ class ShoppingItemVisibilityParams(TypedDict, total=False):
dimensions: List[
Literal[
"period",
"product_key",
"product_name",
"brand_name",
"date",
Expand Down
Loading