Skip to content

Commit f26ce2b

Browse files
chore(release): 1.0.0 [skip ci]
# 1.0.0 (2025-06-04) ### Bug Fixes * add packageManager field for Yarn 4 compatibility ([dc1de05](dc1de05)) * convert bin field to object format for npm compatibility ([9f5ee8a](9f5ee8a)) * resolve test failures and version compatibility issues ([6b682aa](6b682aa)) * resolve timeout test race condition ([8a6dea1](8a6dea1)) * resolve TypeScript errors in test files ([2877988](2877988)) * use space indentation for markdown files ([58b359b](58b359b)) ### Features * add bin field to enable npx invocation ([1c48881](1c48881)) * apply CC BY-NC-SA 4.0 license with full license file and README badge ([e8c9980](e8c9980)) * implement initial MCP server with tool definitions ([377b6e0](377b6e0)) * implement Wayback Machine API integration ([14d70c1](14d70c1)) * initial project setup with plan for Wayback Machine MCP server ([f265ed8](f265ed8))
1 parent b65e1b2 commit f26ce2b

File tree

2 files changed

+24
-5
lines changed

2 files changed

+24
-5
lines changed

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
1+
# 1.0.0 (2025-06-04)
2+
3+
4+
### Bug Fixes
5+
6+
* add packageManager field for Yarn 4 compatibility ([dc1de05](https://github.com/Mearman/mcp-wayback-machine/commit/dc1de05a1a856fd666d9c7711626c664fe249c19))
7+
* convert bin field to object format for npm compatibility ([9f5ee8a](https://github.com/Mearman/mcp-wayback-machine/commit/9f5ee8ad7b1b1ae4c0cabc6ed5109aaea9b50073))
8+
* resolve test failures and version compatibility issues ([6b682aa](https://github.com/Mearman/mcp-wayback-machine/commit/6b682aa4569693209f7673112c13bc860021acac))
9+
* resolve timeout test race condition ([8a6dea1](https://github.com/Mearman/mcp-wayback-machine/commit/8a6dea17ced800eb6bf9826be3473aa767406db6))
10+
* resolve TypeScript errors in test files ([2877988](https://github.com/Mearman/mcp-wayback-machine/commit/2877988733d6010f1a5e98a1e51760f8c71b63ee))
11+
* use space indentation for markdown files ([58b359b](https://github.com/Mearman/mcp-wayback-machine/commit/58b359b7dc2b561aba1cc45ef95405d87825756d))
12+
13+
14+
### Features
15+
16+
* add bin field to enable npx invocation ([1c48881](https://github.com/Mearman/mcp-wayback-machine/commit/1c48881effe427cf3b9bacd9ce32f78912d1a267))
17+
* apply CC BY-NC-SA 4.0 license with full license file and README badge ([e8c9980](https://github.com/Mearman/mcp-wayback-machine/commit/e8c998056d3e9cbca272204d83c905478a7c9fc6))
18+
* implement initial MCP server with tool definitions ([377b6e0](https://github.com/Mearman/mcp-wayback-machine/commit/377b6e02773f8ad59115f0097a69201ea8028e84))
19+
* implement Wayback Machine API integration ([14d70c1](https://github.com/Mearman/mcp-wayback-machine/commit/14d70c1161e0a8cf78dd6011d670007419011c34))
20+
* initial project setup with plan for Wayback Machine MCP server ([f265ed8](https://github.com/Mearman/mcp-wayback-machine/commit/f265ed824184f009f1d39a6716632337ae1e58c3))
21+
122
# Changelog
223

324
All notable changes to this project will be documented in this file.
425

526
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
27+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
{
22
"name": "mcp-wayback-machine",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"description": "MCP server for interacting with the Wayback Machine without API keys",
55
"main": "dist/index.js",
66
"type": "module",
7-
"bin": {
8-
"mcp-wayback-machine": "dist/index.js"
9-
},
7+
"bin": "dist/index.js",
108
"scripts": {
119
"build": "tsc",
1210
"dev": "tsx watch src/index.ts",

0 commit comments

Comments
 (0)