diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 463488b6..5a79c2c0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.17.1" + ".": "0.17.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ceae5df..b601c756 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## 0.17.2 (2026-02-12) + +Full Changelog: [v0.17.1...v0.17.2](https://github.com/openlayer-ai/openlayer-python/compare/v0.17.1...v0.17.2) + +### Chores + +* **internal:** fix lint error on Python 3.14 ([4f37194](https://github.com/openlayer-ai/openlayer-python/commit/4f37194fac395a9070c34f90ac35680ec2211026)) + ## 0.17.1 (2026-02-10) Full Changelog: [v0.17.0...v0.17.1](https://github.com/openlayer-ai/openlayer-python/compare/v0.17.0...v0.17.1) diff --git a/pyproject.toml b/pyproject.toml index 75e18183..89b25b94 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "openlayer" -version = "0.17.1" +version = "0.17.2" description = "The official Python library for the openlayer API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/openlayer/_utils/_compat.py b/src/openlayer/_utils/_compat.py index dd703233..2c70b299 100644 --- a/src/openlayer/_utils/_compat.py +++ b/src/openlayer/_utils/_compat.py @@ -26,7 +26,7 @@ def is_union(tp: Optional[Type[Any]]) -> bool: else: import types - return tp is Union or tp is types.UnionType + return tp is Union or tp is types.UnionType # type: ignore[comparison-overlap] def is_typeddict(tp: Type[Any]) -> bool: diff --git a/src/openlayer/_version.py b/src/openlayer/_version.py index 9630cb21..c9c72cfb 100644 --- a/src/openlayer/_version.py +++ b/src/openlayer/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "openlayer" -__version__ = "0.17.1" # x-release-please-version +__version__ = "0.17.2" # x-release-please-version