scholar-mcp 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ ![ScholarMCP banner](public/scholarmcp_banner.svg)
2
+
1
3
  # ScholarMCP
2
4
 
3
5
  [![npm](https://img.shields.io/npm/v/scholar-mcp)](https://www.npmjs.com/package/scholar-mcp)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scholar-mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "MCP Server for researchers",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -26,9 +26,13 @@
26
26
  "test:watch": "vitest",
27
27
  "release:preflight": "npm run check && npm run test && npm run pack:dry-run",
28
28
  "release:publish": "npm publish",
29
+ "release:gh": "gh release create v$(node -p \"JSON.parse(require('node:fs').readFileSync('package.json','utf8')).version\") --verify-tag --generate-notes",
29
30
  "release:patch": "npm run release:preflight && npm version patch && npm run release:publish && git push --follow-tags",
30
31
  "release:minor": "npm run release:preflight && npm version minor && npm run release:publish && git push --follow-tags",
31
- "release:major": "npm run release:preflight && npm version major && npm run release:publish && git push --follow-tags"
32
+ "release:major": "npm run release:preflight && npm version major && npm run release:publish && git push --follow-tags",
33
+ "release:patch:with-release": "npm run release:patch && npm run release:gh",
34
+ "release:minor:with-release": "npm run release:minor && npm run release:gh",
35
+ "release:major:with-release": "npm run release:major && npm run release:gh"
32
36
  },
33
37
  "engines": {
34
38
  "node": ">=20"