Skip to content

Commit 86b74dc

Browse files
authored
Merge pull request #6 from context-dot-dev/release-please--branches--main--changes--next--components--context.dev
release: 1.0.0
2 parents a171ac9 + aaaa1c8 commit 86b74dc

File tree

9 files changed

+20
-14
lines changed

9 files changed

+20
-14
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.5.0"
2+
".": "1.0.0"
33
}

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 20
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/context-dev%2Fcontext.dev-5ccec8151205f9db00c9218a6c903ddb337cbbb51384876fb2090a181b92cdf5.yml
3-
openapi_spec_hash: d82bad84c8896bf48e3c3522cf9e37f8
4-
config_hash: 80cc0bee9b5635f8cd6ec09e92226d88
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/context-dev%2Fcontext.dev-ea89aeedfdd75f71542bcbb53880ecbc07f2656945d9ac8dce55d7bdabc5f8cc.yml
3+
openapi_spec_hash: c4dd62c3a3dc8c59a050fb6a76ab5f1b
4+
config_hash: 91976f3284e20f47fdb0256e128536cd

CHANGELOG.md

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

3+
## 1.0.0 (2026-03-25)
4+
5+
Full Changelog: [v0.5.0...v1.0.0](https://github.com/context-dot-dev/context-typescript-sdk/compare/v0.5.0...v1.0.0)
6+
7+
### Features
8+
9+
* **api:** api update ([8da6d0e](https://github.com/context-dot-dev/context-typescript-sdk/commit/8da6d0e906cf46e0ec0e1098bef653e2691baae6))
10+
311
## 0.5.0 (2026-03-25)
412

513
Full Changelog: [v0.4.0...v0.5.0](https://github.com/context-dot-dev/context-typescript-sdk/compare/v0.4.0...v0.5.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "context.dev",
3-
"version": "0.5.0",
3+
"version": "1.0.0",
44
"description": "The official TypeScript library for the Context Dev API",
55
"author": "Context Dev <hello@context.dev>",
66
"types": "dist/index.d.ts",

packages/mcp-server/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dxt_version": "0.2",
33
"name": "context.dev-mcp",
4-
"version": "0.5.0",
4+
"version": "1.0.0",
55
"description": "The official MCP Server for the Context Dev API",
66
"author": {
77
"name": "Context Dev",

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "context.dev-mcp",
3-
"version": "0.5.0",
3+
"version": "1.0.0",
44
"description": "The official MCP Server for the Context Dev API",
55
"author": "Context Dev <hello@context.dev>",
66
"types": "dist/index.d.ts",

packages/mcp-server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
2020
new McpServer(
2121
{
2222
name: 'context_dev_api',
23-
version: '0.5.0',
23+
version: '1.0.0',
2424
},
2525
{
2626
instructions: await getInstructions(stainlessApiKey),

src/resources/web.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ export class Web extends APIResource {
1616
}
1717

1818
/**
19-
* Scrapes the given URL and returns the raw HTML content of the page. Uses
20-
* automatic proxy escalation to handle blocked sites.
19+
* Scrapes the given URL and returns the raw HTML content of the page.
2120
*/
2221
webScrapeHTML(
2322
query: WebWebScrapeHTMLParams,
@@ -39,9 +38,8 @@ export class Web extends APIResource {
3938
}
4039

4140
/**
42-
* Scrapes the given URL, converts the HTML content to GitHub Flavored Markdown
43-
* (GFM), and returns the result. Uses automatic proxy escalation to handle blocked
44-
* sites.
41+
* Scrapes the given URL, converts the HTML content to Markdown, and returns the
42+
* result.
4543
*/
4644
webScrapeMd(query: WebWebScrapeMdParams, options?: RequestOptions): APIPromise<WebWebScrapeMdResponse> {
4745
return this._client.get('/web/scrape/markdown', { query, ...options });

src/version.ts

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

0 commit comments

Comments
 (0)