Skip to content

Commit 7419961

Browse files
chore(main): release 0.1.1 (#9)
1 parent 397a870 commit 7419961

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
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.1.0"
2+
".": "0.1.1"
33
}

CHANGELOG.md

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

3+
## [0.1.1](https://github.com/hyprmcp/mcp-install-instructions-generator/compare/v0.1.0...v0.1.1) (2025-09-15)
4+
5+
6+
### Bug Fixes
7+
8+
* **deps:** update dependency @modelcontextprotocol/sdk to v1.18.0 ([#8](https://github.com/hyprmcp/mcp-install-instructions-generator/issues/8)) ([6905212](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/6905212a9d7ec3cec691296eb68f0a06fd54e8de))
9+
* replace empty name with generated ([927fb7b](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/927fb7b9c707a23cb650304ddb2ff2ab314f6e09))
10+
11+
12+
### Other
13+
14+
* **deps:** update actions/setup-node action to v5 ([#4](https://github.com/hyprmcp/mcp-install-instructions-generator/issues/4)) ([d74d2dd](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/d74d2ddbf8fb98bedfb8c3bd5b21b01c45093a25))
15+
* **deps:** update dependency @types/node to v24.4.0 ([#7](https://github.com/hyprmcp/mcp-install-instructions-generator/issues/7)) ([ea88cd2](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/ea88cd2f482f53654c076c5973f1301a9fd130d8))
16+
* **deps:** update pnpm to v10.16.1 ([#3](https://github.com/hyprmcp/mcp-install-instructions-generator/issues/3)) ([397a870](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/397a870da9643c4fc48babcd62508fc04c9d09ee))
17+
318
## 0.1.0 (2025-09-09)
419

520

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ You can use the web component by importing it into your HTML file:
2626
<!-- x-release-please-start-version -->
2727

2828
```html
29-
<script src="https://cdn.jsdelivr.net/npm/@hyprmcp/mcp-install-instructions-generator@0.1.0/dist/component/index.js"></script>
29+
<script src="https://cdn.jsdelivr.net/npm/@hyprmcp/mcp-install-instructions-generator@0.1.1/dist/component/index.js"></script>
3030
<link
3131
rel="stylesheet"
32-
href="https://cdn.jsdelivr.net/npm/@hyprmcp/mcp-install-instructions-generator@0.1.0/dist/component/index.css"
32+
href="https://cdn.jsdelivr.net/npm/@hyprmcp/mcp-install-instructions-generator@0.1.1/dist/component/index.css"
3333
/>
3434

3535
<mcp-install-instructions

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyprmcp/mcp-install-instructions-generator",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "",
55
"scripts": {
66
"prebuild": "shx rm -rf dist",

src/mcp/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { generateMCPInstructions, targets } from '../lib';
55
export function newServer() {
66
const server = new McpServer({
77
name: 'mcp-who-am-i',
8-
version: '0.1.0', // x-release-please-version
8+
version: '0.1.1', // x-release-please-version
99
});
1010

1111
server.registerTool(

0 commit comments

Comments
 (0)