Skip to content

Commit ca9aac1

Browse files
authored
Merge pull request #21 from perplexityai/release-please--branches--main--changes--next--components--perplexity_ai
release: 0.18.2
2 parents 88f280f + 506de69 commit ca9aac1

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.18.1"
2+
".": "0.18.2"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.18.2 (2025-12-19)
4+
5+
Full Changelog: [v0.18.1...v0.18.2](https://github.com/perplexityai/perplexity-node/compare/v0.18.1...v0.18.2)
6+
7+
### Documentation
8+
9+
* add more examples ([23b89c4](https://github.com/perplexityai/perplexity-node/commit/23b89c4a7ba987715699edc8abfe65dac7ec0a21))
10+
311
## 0.18.1 (2025-12-05)
412

513
Full Changelog: [v0.18.0...v0.18.1](https://github.com/perplexityai/perplexity-node/compare/v0.18.0...v0.18.1)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ import Perplexity from '@perplexity-ai/perplexity_ai';
149149
const client = new Perplexity();
150150

151151
const stream = await client.chat.completions.create({
152-
messages: [{ role: 'user', content: 'What is the capital of France?' }],
152+
messages: [{ role: 'user', content: 'Tell me about the latest developments in AI' }],
153153
model: 'sonar',
154154
stream: true,
155155
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@perplexity-ai/perplexity_ai",
3-
"version": "0.18.1",
3+
"version": "0.18.2",
44
"description": "The official TypeScript library for the Perplexity API",
55
"author": "Perplexity <api@perplexity.ai>",
66
"types": "dist/index.d.ts",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.18.1'; // x-release-please-version
1+
export const VERSION = '0.18.2'; // x-release-please-version

0 commit comments

Comments
 (0)