diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2ce25fec..ff4f9a50 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.32" + ".": "0.1.0-alpha.33" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 6afd29bf..d0bc9dc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.1.0-alpha.33 (2025-03-27) + +Full Changelog: [v0.1.0-alpha.32...v0.1.0-alpha.33](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.32...v0.1.0-alpha.33) + +### Bug Fixes + +* **ci:** remove publishing patch ([#153](https://github.com/mixedbread-ai/mixedbread-python/issues/153)) ([ac8c93e](https://github.com/mixedbread-ai/mixedbread-python/commit/ac8c93e93ea77416eba8e85f660f91a1fa3b49db)) + + +### Chores + +* fix typos ([#155](https://github.com/mixedbread-ai/mixedbread-python/issues/155)) ([1e32018](https://github.com/mixedbread-ai/mixedbread-python/commit/1e320180ee5f2df270efd0ca2a52648297ede4a1)) + ## 0.1.0-alpha.32 (2025-03-17) Full Changelog: [v0.1.0-alpha.31...v0.1.0-alpha.32](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.31...v0.1.0-alpha.32) diff --git a/bin/publish-pypi b/bin/publish-pypi index ebebf916..826054e9 100644 --- a/bin/publish-pypi +++ b/bin/publish-pypi @@ -3,8 +3,4 @@ set -eux mkdir -p dist rye build --clean -# Patching importlib-metadata version until upstream library version is updated -# https://github.com/pypa/twine/issues/977#issuecomment-2189800841 -"$HOME/.rye/self/bin/python3" -m ensurepip -"$HOME/.rye/self/bin/python3" -m pip install 'importlib-metadata==7.2.1' rye publish --yes --token=$PYPI_TOKEN diff --git a/pyproject.toml b/pyproject.toml index 34ad5da4..6e74aa36 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "mixedbread" -version = "0.1.0-alpha.32" +version = "0.1.0-alpha.33" description = "The official Python library for the Mixedbread API" dynamic = ["readme"] license = "Apache-2.0" @@ -86,7 +86,7 @@ typecheck = { chain = [ "typecheck:mypy" = "mypy ." [build-system] -requires = ["hatchling", "hatch-fancy-pypi-readme"] +requires = ["hatchling==1.26.3", "hatch-fancy-pypi-readme"] build-backend = "hatchling.build" [tool.hatch.build] diff --git a/src/mixedbread/_models.py b/src/mixedbread/_models.py index b51a1bf5..34935716 100644 --- a/src/mixedbread/_models.py +++ b/src/mixedbread/_models.py @@ -681,7 +681,7 @@ def set_pydantic_config(typ: Any, config: pydantic.ConfigDict) -> None: setattr(typ, "__pydantic_config__", config) # noqa: B010 -# our use of subclasssing here causes weirdness for type checkers, +# our use of subclassing here causes weirdness for type checkers, # so we just pretend that we don't subclass if TYPE_CHECKING: GenericModel = BaseModel diff --git a/src/mixedbread/_utils/_transform.py b/src/mixedbread/_utils/_transform.py index 18afd9d8..7ac2e17f 100644 --- a/src/mixedbread/_utils/_transform.py +++ b/src/mixedbread/_utils/_transform.py @@ -126,7 +126,7 @@ def _get_annotated_type(type_: type) -> type | None: def _maybe_transform_key(key: str, type_: type) -> str: """Transform the given `data` based on the annotations provided in `type_`. - Note: this function only looks at `Annotated` types that contain `PropertInfo` metadata. + Note: this function only looks at `Annotated` types that contain `PropertyInfo` metadata. """ annotated_type = _get_annotated_type(type_) if annotated_type is None: diff --git a/src/mixedbread/_version.py b/src/mixedbread/_version.py index bfe62c40..d11bb72a 100644 --- a/src/mixedbread/_version.py +++ b/src/mixedbread/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "mixedbread" -__version__ = "0.1.0-alpha.32" # x-release-please-version +__version__ = "0.1.0-alpha.33" # x-release-please-version