Skip to content

Commit 5989099

Browse files
chore(release): 1.8.0 [skip ci]
# [1.8.0](aashari/mcp-server-atlassian-bitbucket@v1.7.3...v1.8.0) (2025-03-26) ### Features * **bitbucket:** add default -updated_on sort to list operations ([ee5dbca](aashari@ee5dbca)) * **bitbucket:** add pull request comments and enhance repository details ([72a91c8](aashari@72a91c8))
1 parent ee5dbca commit 5989099

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# [1.8.0](https://github.com/aashari/mcp-server-atlassian-bitbucket/compare/v1.7.3...v1.8.0) (2025-03-26)
2+
3+
4+
### Features
5+
6+
* **bitbucket:** add default -updated_on sort to list operations ([ee5dbca](https://github.com/aashari/mcp-server-atlassian-bitbucket/commit/ee5dbcae32484b61e67f5852e21d5e63ed2ea4a4))
7+
* **bitbucket:** add pull request comments and enhance repository details ([72a91c8](https://github.com/aashari/mcp-server-atlassian-bitbucket/commit/72a91c89c7ce54aedbdf457ba818af83414c43a6))
8+
19
## [1.7.3](https://github.com/aashari/mcp-server-atlassian-bitbucket/compare/v1.7.2...v1.7.3) (2025-03-26)
210

311

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aashari/mcp-server-atlassian-bitbucket",
3-
"version": "1.7.3",
3+
"version": "1.8.0",
44
"description": "A TypeScript-based Model Context Protocol (MCP) server for Atlassian Bitbucket integration. Provides tools for accessing and managing Bitbucket repositories, pull requests, and content to connect Claude/Anthropic AI systems to Bitbucket version control.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/cli/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import atlassianRepositoriesCli from './atlassian.repositories.cli.js';
77
import atlassianPullRequestsCli from './atlassian.pullrequests.cli.js';
88

99
// Get the version from package.json
10-
const VERSION = '1.7.3'; // This should match the version in src/index.ts
10+
const VERSION = '1.8.0'; // This should match the version in src/index.ts
1111
const NAME = '@aashari/mcp-server-atlassian-bitbucket';
1212
const DESCRIPTION =
1313
'A Model Context Protocol (MCP) server for Atlassian Bitbucket integration';

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import atlassianRepositoriesTools from './tools/atlassian.repositories.tool.js';
1313
import atlassianPullRequestsTools from './tools/atlassian.pullrequests.tool.js';
1414

1515
// Define version constant for easier management and consistent versioning
16-
const VERSION = '1.7.3';
16+
const VERSION = '1.8.0';
1717

1818
let serverInstance: McpServer | null = null;
1919
let transportInstance: SSEServerTransport | StdioServerTransport | null = null;

0 commit comments

Comments
 (0)