Skip to content
Merged
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.16.2"
".": "0.16.3"
}
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## 0.16.3 (2025-09-04)

Full Changelog: [v0.16.2...v0.16.3](https://github.com/openlayer-ai/openlayer-ts/compare/v0.16.2...v0.16.3)

### Bug Fixes

* update example for bedrock dev mode to incl openlayerignore ([dc37d37](https://github.com/openlayer-ai/openlayer-ts/commit/dc37d37f40e8a50c94f5ebe919aab809bf6cc1a0))


### Chores

* update CI script ([4243b7a](https://github.com/openlayer-ai/openlayer-ts/commit/4243b7a69565ac0cbaeea0d18b71e1d6cab15683))
* update package dependencies and improve tracing latency calculation ([d984e00](https://github.com/openlayer-ai/openlayer-ts/commit/d984e000f02fdce03b55120b4dfe8b0333ae3990))


### Refactors

* consolidate StepType enum and related functionality into steps.ts ([7ac626e](https://github.com/openlayer-ai/openlayer-ts/commit/7ac626e5093034ddbf26d490bd961bd1b8dd5236))
* improve code readability and formatting across multiple files ([0d3cfe0](https://github.com/openlayer-ai/openlayer-ts/commit/0d3cfe06592debc483603cafdbd100425ee61230))
* streamline timing handling in tracedTool and tracedAgent ([56ee199](https://github.com/openlayer-ai/openlayer-ts/commit/56ee19953682b91ac02bbb12df90d5e092423f63))

## 0.16.2 (2025-08-23)

Full Changelog: [v0.16.1...v0.16.2](https://github.com/openlayer-ai/openlayer-ts/compare/v0.16.1...v0.16.2)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openlayer",
"version": "0.16.2",
"version": "0.16.3",
"description": "The official TypeScript library for the Openlayer API",
"author": "Openlayer <support@openlayer.com>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion scripts/utils/upload-artifact.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if [[ "$SIGNED_URL" == "null" ]]; then
exit 1
fi

UPLOAD_RESPONSE=$(tar -cz dist | curl -v -X PUT \
UPLOAD_RESPONSE=$(tar -cz "${BUILD_PATH:-dist}" | curl -v -X PUT \
-H "Content-Type: application/gzip" \
--data-binary @- "$SIGNED_URL" 2>&1)

Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.16.2'; // x-release-please-version
export const VERSION = '0.16.3'; // x-release-please-version