bamboo-mcp-server 1.1.2 → 1.1.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.1.3](https://github.com/norus/atlassian-bamboo-mcp/compare/v1.1.2...v1.1.3) (2026-01-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **ci:** only publish to npm when new release is created ([cbbd440](https://github.com/norus/atlassian-bamboo-mcp/commit/cbbd4404aabe16ba2f6faa53f15124f8fe95c8b6))
7
+
1
8
  ## [1.1.2](https://github.com/norus/atlassian-bamboo-mcp/compare/v1.1.1...v1.1.2) (2026-01-09)
2
9
 
3
10
 
package/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # Atlassian Bamboo MCP Server
2
2
 
3
+ [![CI](https://github.com/norus/atlassian-bamboo-mcp/actions/workflows/ci.yml/badge.svg)](https://github.com/norus/atlassian-bamboo-mcp/actions/workflows/ci.yml)
3
4
  [![NPM Version](https://img.shields.io/npm/v/bamboo-mcp-server?color=red)](https://www.npmjs.com/package/bamboo-mcp-server)
4
5
  [![MIT licensed](https://img.shields.io/badge/license-MIT-blue)](./LICENSE)
5
6
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.0-blue)](https://www.typescriptlang.org/)
@@ -322,6 +323,12 @@ npm install
322
323
  # Build
323
324
  npm run build
324
325
 
326
+ # Run tests
327
+ npm test
328
+
329
+ # Run tests with coverage
330
+ npm run test:coverage
331
+
325
332
  # Run locally
326
333
  BAMBOO_URL="https://bamboo.example.com" \
327
334
  BAMBOO_TOKEN="your-token" \
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bamboo-mcp-server",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "MCP server for Atlassian Bamboo",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",