diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6a704b6c1a..0e0d6b7831 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"5.1.0","packages/phoenix-evals":"0.16.1","packages/phoenix-otel":"0.5.1"} +{".":"5.1.1","packages/phoenix-evals":"0.16.1","packages/phoenix-otel":"0.5.1"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 7217734c24..99125e58c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [5.1.1](https://github.com/Arize-ai/phoenix/compare/arize-phoenix-v5.1.0...arize-phoenix-v5.1.1) (2024-09-30) + + +### Bug Fixes + +* support numpy 2 ([#4798](https://github.com/Arize-ai/phoenix/issues/4798)) ([c4baea4](https://github.com/Arize-ai/phoenix/commit/c4baea40af5058b5aefcef3f283aba53b8770199)) + ## [5.1.0](https://github.com/Arize-ai/phoenix/compare/arize-phoenix-v5.0.0...arize-phoenix-v5.1.0) (2024-09-27) diff --git a/pyproject.toml b/pyproject.toml index f745b2315c..7ded8bc460 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -146,32 +146,15 @@ build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/phoenix"] -exclude = [ - "src/phoenix/evals/", - "src/phoenix/otel/", -] -artifacts = [ - "src/phoenix/server/static", - "src/phoenix/db/migrations", -] +exclude = ["src/phoenix/evals/"] +artifacts = ["src/phoenix/server/static", "src/phoenix/db/migrations"] [tool.hatch.build] only-packages = true [tool.hatch.build.targets.sdist] -exclude = [ - "packages/", - "src/phoenix/evals/", - "src/phoenix/otel/", - "tests/", - "integration_tests/", - "scripts/", - "examples/", -] -artifacts = [ - "src/phoenix/server/static", - "src/phoenix/db/migrations", -] +exclude = ["src/phoenix/evals/", "packages/"] +artifacts = ["src/phoenix/server/static", "src/phoenix/db/migrations"] [tool.hatch.envs.default] dependencies = [ diff --git a/src/phoenix/version.py b/src/phoenix/version.py index 0d72820f3e..a9c316e20d 100644 --- a/src/phoenix/version.py +++ b/src/phoenix/version.py @@ -1 +1 @@ -__version__ = "5.1.0" +__version__ = "5.1.1"