Skip to content

Commit efad71f

Browse files
chore(main): release 0.1.0 (#2)
1 parent 8b82b6b commit efad71f

File tree

4 files changed

+34
-4
lines changed

4 files changed

+34
-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.0.0"
2+
".": "0.1.0"
33
}

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Changelog
2+
3+
## 0.1.0 (2025-09-09)
4+
5+
6+
### Features
7+
8+
* add cli, improve example ([e06d7d9](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/e06d7d974681fcadde2a98d1e14f705a495397b7))
9+
* add markdown all option, copy+paste, better demo ([4cb796d](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/4cb796d065c7ac6eb45af2303869c3fd45a82439))
10+
* add mcp server ([d2f8dcb](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/d2f8dcb07b0c69c0b88c635a4822692f0181bacf))
11+
* add more generators ([1280374](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/12803749d92efc8f0ce052490613c2972cf6b830))
12+
13+
14+
### Other
15+
16+
* add license file ([8b82b6b](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/8b82b6b3896bad92726f17619cd570951a337d5b))
17+
* add logo ([b99aa32](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/b99aa322d585c1da47500d61a1690504eafc1a52))
18+
* add release plase config ([7d01c5a](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/7d01c5ac5617b10de84d95618c9318803faa43fd))
19+
* add release please manifest ([3afa51f](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/3afa51ffef271341860152cefabbf9c50beb51f3))
20+
* add renovate.json ([ea5728a](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/ea5728a332ef34d193f5097b56b7e579d62d5f10))
21+
* change @types/express to dev dependency ([ac72613](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/ac72613f80fc4ac8957490281ade8c52de82fe72))
22+
* initial commit ([41d2ffe](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/41d2ffe4f81ceb0f5b48ce3976b538ea0f0209e3))
23+
* release please update version in readme ([59d29ce](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/59d29ce87c07947d4a2f6b57117523e4494dfcab))
24+
* rename project ([7a91ddf](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/7a91ddf52dc97997f3bd5a67f08db25f896c9d2e))
25+
26+
27+
### Docs
28+
29+
* add readme ([bc15ab1](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/bc15ab183fb80b7037db34b7b1f82ca50273b82e))
30+
* update readme ([2b8b8a6](https://github.com/hyprmcp/mcp-install-instructions-generator/commit/2b8b8a6058d0505440dec66a9563a012b7124056))

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.0.0/dist/component/index.js"></script>
29+
<script src="https://cdn.jsdelivr.net/npm/@hyprmcp/mcp-install-instructions-generator@0.1.0/dist/component/index.js"></script>
3030
<link
3131
rel="stylesheet"
32-
href="https://cdn.jsdelivr.net/npm/@hyprmcp/mcp-install-instructions-generator@0.0.0/dist/component/index.css"
32+
href="https://cdn.jsdelivr.net/npm/@hyprmcp/mcp-install-instructions-generator@0.1.0/dist/component/index.css"
3333
/>
3434

3535
<mcp-install-instructions

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.2', // x-release-please-version
8+
version: '0.1.0', // x-release-please-version
99
});
1010

1111
server.registerTool(

0 commit comments

Comments
 (0)