diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a915e8c..001eb2c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.1" + ".": "0.1.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 65a55d3..390a9d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.1.2 (2023-10-17) + +Full Changelog: [v0.1.1...v0.1.2](https://github.com/anthropics/anthropic-bedrock-typescript/compare/v0.1.1...v0.1.2) + +### Bug Fixes + +* import web-streams-polyfill without overriding globals ([#13](https://github.com/anthropics/anthropic-bedrock-typescript/issues/13)) ([30db709](https://github.com/anthropics/anthropic-bedrock-typescript/commit/30db7098fea0154c8dcb484bfee2ed5c4ec946aa)) + ## 0.1.1 (2023-10-16) Full Changelog: [v0.1.0...v0.1.1](https://github.com/anthropics/anthropic-bedrock-typescript/compare/v0.1.0...v0.1.1) diff --git a/package.json b/package.json index 66cdeb0..78d9b93 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@anthropic-ai/bedrock-sdk", - "version": "0.1.1", + "version": "0.1.2", "description": "Client library for the AnthropicBedrock API", "author": "Anthropic Bedrock ", "types": "dist/index.d.ts", diff --git a/src/_shims/node-runtime.ts b/src/_shims/node-runtime.ts index cc16e85..7d24b70 100644 --- a/src/_shims/node-runtime.ts +++ b/src/_shims/node-runtime.ts @@ -13,7 +13,9 @@ import { Readable } from 'node:stream'; import { type RequestOptions } from '../core'; import { MultipartBody } from './MultipartBody'; import { type Shims } from './registry'; -import { ReadableStream } from 'web-streams-polyfill'; + +// @ts-ignore (this package does not have proper export maps for this export) +import { ReadableStream } from 'web-streams-polyfill/dist/ponyfill.es2018.js'; type FileFromPathOptions = Omit; diff --git a/src/version.ts b/src/version.ts index b322647..5447861 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.1.1'; // x-release-please-version +export const VERSION = '0.1.2'; // x-release-please-version