Skip to content

Commit 17fe5f5

Browse files
sjvanschgeo
andauthored
chore: prep v0.0.1 (#35)
* Update package.json * changelog * Release date * Release workflow --------- Co-authored-by: Christian Georgi <chgeo@users.noreply.github.com> Co-authored-by: Christian Georgi <christian.georgi@sap.com>
1 parent 36304d3 commit 17fe5f5

File tree

4 files changed

+71
-24
lines changed

4 files changed

+71
-24
lines changed

.github/workflows/release.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
3+
4+
name: Release
5+
6+
on:
7+
push:
8+
branches: main
9+
10+
workflow_dispatch:
11+
inputs:
12+
dry-run:
13+
description: Dry run
14+
required: false
15+
default: false
16+
type: boolean
17+
18+
permissions:
19+
contents: write
20+
id-token: write
21+
22+
concurrency:
23+
group: ${{ github.workflow }}-${{ github.ref }}
24+
cancel-in-progress: true
25+
26+
27+
jobs:
28+
release:
29+
uses: cap-js/.github/.github/workflows/release.yml@main
30+
secrets: inherit
31+
with:
32+
dry-run: ${{ fromJSON(github.event.inputs.dry-run || 'false') }}

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
This project adheres to [Semantic Versioning](http://semver.org/).
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/).
6+
7+
## Version 0.0.1 - 2025-08-15
8+
9+
### Added
10+
11+
- Initial release

package-lock.json

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,33 @@
11
{
22
"name": "@cap-js/mcp-server",
3-
"version": "0.1.0",
4-
"keywords": [],
3+
"version": "0.0.1",
4+
"description": "Model Context Protocol (MCP) server for AI-assisted development of CAP applications.",
5+
"repository": {
6+
"type": "git",
7+
"url": "git+https://github.com/cap-js/mcp-server.git"
8+
},
59
"author": "SAP SE (https://www.sap.com)",
10+
"homepage": "https://cap.cloud.sap/",
611
"license": "Apache-2.0",
7-
"description": "Model Context Protocol (MCP) server for AI-assisted development of CAP applications.",
812
"type": "module",
913
"files": [
10-
"index.js",
11-
"lib/"
14+
"lib/",
15+
"index.js"
1216
],
1317
"bin": {
1418
"cds-mcp": "./index.js"
1519
},
20+
"scripts": {
21+
"test": "node --test --test-concurrency=1",
22+
"lint": "npx eslint ."
23+
},
1624
"dependencies": {
1725
"@modelcontextprotocol/sdk": "^1.8.0",
18-
"@sap/cds": "*",
26+
"@sap/cds": "^9",
1927
"onnxruntime-web": "^1.22.0"
2028
},
2129
"devDependencies": {
2230
"@huggingface/transformers": "^3.7.1",
2331
"prettier": "*"
24-
},
25-
"scripts": {
26-
"test": "node --test --test-concurrency=1",
27-
"lint": "npx eslint ."
2832
}
2933
}

0 commit comments

Comments
 (0)