chore: Bump version to 0.4.0 for release
- Updated package.json version to 0.4.0 - Updated CHANGELOG.md with new release notes - Updated version in index.ts
This commit is contained in:
parent
5d38645127
commit
b1a25d2a05
3 changed files with 18 additions and 2 deletions
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [0.4.0] - 2025-01-21
|
||||
|
||||
### Added
|
||||
- **New `get_branch` tool for comprehensive branch information**:
|
||||
- Returns detailed branch information including name, ID, and latest commit details
|
||||
- Lists all open pull requests originating from the branch with approval status
|
||||
- Optionally includes merged pull requests when `include_merged_prs` is true
|
||||
- Provides useful statistics like PR counts and days since last commit
|
||||
- Supports both Bitbucket Server and Cloud APIs
|
||||
- Particularly useful for checking if a branch has open PRs before deletion
|
||||
- Added TypeScript interfaces for `BitbucketServerBranch` and `BitbucketCloudBranch`
|
||||
- Added type guard `isGetBranchArgs` for input validation
|
||||
|
||||
### Changed
|
||||
- Updated documentation to include the new `get_branch` tool with comprehensive examples
|
||||
|
||||
## [0.3.0] - 2025-01-06
|
||||
|
||||
### Added
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@nexus2520/bitbucket-mcp-server",
|
||||
"version": "0.3.0",
|
||||
"version": "0.4.0",
|
||||
"description": "MCP server for Bitbucket API integration - supports both Cloud and Server",
|
||||
"type": "module",
|
||||
"main": "./build/index.js",
|
||||
|
|
|
@ -38,7 +38,7 @@ class BitbucketMCPServer {
|
|||
this.server = new Server(
|
||||
{
|
||||
name: 'bitbucket-mcp-server',
|
||||
version: '0.3.0',
|
||||
version: '0.4.0',
|
||||
},
|
||||
{
|
||||
capabilities: {
|
||||
|
|
Loading…
Reference in a new issue