diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 64e0684..d0972da 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.7.0" + ".": "1.7.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ec726b7..e4a5b26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.7.1 (2025-10-04) + +Full Changelog: [v1.7.0...v1.7.1](https://github.com/DayMoonDevelopment/post-for-me-typescript/compare/v1.7.0...v1.7.1) + +### Chores + +* **jsdoc:** fix [@link](https://github.com/link) annotations to refer only to parts of the packageā€˜s public interface ([36af506](https://github.com/DayMoonDevelopment/post-for-me-typescript/commit/36af5061ff182a4da89592409b833262a51df1e2)) + ## 1.7.0 (2025-10-03) Full Changelog: [v1.6.0...v1.7.0](https://github.com/DayMoonDevelopment/post-for-me-typescript/compare/v1.6.0...v1.7.0) diff --git a/package.json b/package.json index 9b294f0..1ab1071 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "post-for-me", - "version": "1.7.0", + "version": "1.7.1", "description": "The official TypeScript library for the Post For Me API", "author": "Post For Me ", "types": "dist/index.d.ts", diff --git a/packages/mcp-server/package.json b/packages/mcp-server/package.json index c239d11..bffe0bc 100644 --- a/packages/mcp-server/package.json +++ b/packages/mcp-server/package.json @@ -1,6 +1,6 @@ { "name": "post-for-me-mcp", - "version": "1.7.0", + "version": "1.7.1", "description": "The official MCP Server for the Post For Me API", "author": "Post For Me ", "types": "dist/index.d.ts", diff --git a/packages/mcp-server/src/server.ts b/packages/mcp-server/src/server.ts index aae9923..917621d 100644 --- a/packages/mcp-server/src/server.ts +++ b/packages/mcp-server/src/server.ts @@ -34,7 +34,7 @@ export const newMcpServer = () => new McpServer( { name: 'post_for_me_api', - version: '1.7.0', + version: '1.7.1', }, { capabilities: { tools: {}, logging: {} } }, ); diff --git a/src/internal/to-file.ts b/src/internal/to-file.ts index 245e849..30eada3 100644 --- a/src/internal/to-file.ts +++ b/src/internal/to-file.ts @@ -73,7 +73,7 @@ export type ToFileInput = /** * Helper for creating a {@link File} to pass to an SDK upload method from a variety of different data formats - * @param value the raw content of the file. Can be an {@link Uploadable}, {@link BlobLikePart}, or {@link AsyncIterable} of {@link BlobLikePart}s + * @param value the raw content of the file. Can be an {@link Uploadable}, BlobLikePart, or AsyncIterable of BlobLikeParts * @param {string=} name the name of the file. If omitted, toFile will try to determine a file name from bits if possible * @param {Object=} options additional properties * @param {string=} options.type the MIME type of the content diff --git a/src/version.ts b/src/version.ts index 1c2e261..63fe850 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '1.7.0'; // x-release-please-version +export const VERSION = '1.7.1'; // x-release-please-version