Skip to content

Commit 77c09ec

Browse files
release: version 2.4.2
1 parent e2f171f commit 77c09ec

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.4.2] - 2026-04-25
9+
10+
### Changed
11+
12+
- **Publish workflow hardening** — Publish now runs on releases/manual dispatch, validates cross-file version alignment, validates release tag/version match, and skips if the npm version already exists.
13+
814
## [2.4.1] - 2026-03-15
915

1016
### Changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@takescake/1password-mcp",
3-
"version": "2.4.1",
3+
"version": "2.4.2",
44
"private": false,
55
"type": "module",
66
"description": "MCP server for 1Password service accounts — tools, prompts, and resources for vault and credential management",

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"url": "https://github.com/CakeRepository/1Password-MCP.git",
77
"source": "github"
88
},
9-
"version": "2.4.1",
9+
"version": "2.4.2",
1010
"packages": [
1111
{
1212
"registryType": "npm",
1313
"identifier": "@takescake/1password-mcp",
14-
"version": "2.4.1",
14+
"version": "2.4.2",
1515
"transport": {
1616
"type": "stdio"
1717
},

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { execFileSync } from "node:child_process";
66
import { LOG_LEVEL_VALUES, type LogLevel } from "./types.js";
77

88
export const SERVER_NAME = "1password-mcp";
9-
export const SERVER_VERSION = "2.4.1";
9+
export const SERVER_VERSION = "2.4.2";
1010

1111
/** Parse a `--flag value` or `--flag=value` argument from process.argv. */
1212
function getArgValue(name: string): string | undefined {

0 commit comments

Comments
 (0)