From a606bacb3f433c365a049540eff6425670b2a34b Mon Sep 17 00:00:00 2001 From: Mikyo King Date: Tue, 9 Jan 2024 14:33:05 -0700 Subject: [PATCH 1/2] ci(js): enforce tests in CI (#86) --- .github/workflows/typescript-CI.yaml | 3 +++ js/packages/openinference-semantic-conventions/package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/typescript-CI.yaml b/.github/workflows/typescript-CI.yaml index 216e68f62..744129f15 100644 --- a/.github/workflows/typescript-CI.yaml +++ b/.github/workflows/typescript-CI.yaml @@ -37,6 +37,9 @@ jobs: - name: Build working-directory: ./js run: pnpm run -r build + - name: Test + working-directory: ./js + run: pnpm run -r test - name: Formatting working-directory: ./js run: | diff --git a/js/packages/openinference-semantic-conventions/package.json b/js/packages/openinference-semantic-conventions/package.json index 5bcd623ce..c3eb7cf40 100644 --- a/js/packages/openinference-semantic-conventions/package.json +++ b/js/packages/openinference-semantic-conventions/package.json @@ -11,7 +11,7 @@ "prebuild": "rimraf dist", "build": "tsc --build tsconfig.json tsconfig.esm.json tsconfig.esnext.json", "type:check": "tsc --noEmit", - "test": "echo \"Error: no test specified\" && exit 1" + "test": "echo \"NOOP: semantic conventions has no tests\" && exit 0" }, "files": [ "dist", From 05c74f2d71a989c7ec08a4eabdecd4e6d60a40e3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Jan 2024 13:36:15 -0800 Subject: [PATCH 2/2] chore(main): release python-openinference-semantic-conventions 0.1.0 (#79) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 3 +-- python/openinference-semantic-conventions/CHANGELOG.md | 9 +++++++++ .../src/openinference/semconv/version.py | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) create mode 100644 python/openinference-semantic-conventions/CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2c63c0851..53cd57bb3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,2 +1 @@ -{ -} +{"python/openinference-semantic-conventions":"0.1.0"} diff --git a/python/openinference-semantic-conventions/CHANGELOG.md b/python/openinference-semantic-conventions/CHANGELOG.md new file mode 100644 index 000000000..2232bf33b --- /dev/null +++ b/python/openinference-semantic-conventions/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +## 0.1.0 (2024-01-09) + + +### Features + +* group semantic convention attributes into separate namespaces ([#72](https://github.com/Arize-ai/openinference/issues/72)) ([dcf6412](https://github.com/Arize-ai/openinference/commit/dcf6412897e266069138f348face61d274015be8)) +* **python:** add semantic comventions ([#16](https://github.com/Arize-ai/openinference/issues/16)) ([568b3d1](https://github.com/Arize-ai/openinference/commit/568b3d10d5254ccc2607a75e1f8ccf9b02b7f2c9)) diff --git a/python/openinference-semantic-conventions/src/openinference/semconv/version.py b/python/openinference-semantic-conventions/src/openinference/semconv/version.py index f102a9cad..3dc1f76bc 100644 --- a/python/openinference-semantic-conventions/src/openinference/semconv/version.py +++ b/python/openinference-semantic-conventions/src/openinference/semconv/version.py @@ -1 +1 @@ -__version__ = "0.0.1" +__version__ = "0.1.0"