Skip to content

Commit c6cc5d2

Browse files
committed
chore: bump to v0.3.4 for MCP Registry (PyPI README must contain mcp-name)
1 parent 8aac84a commit c6cc5d2

File tree

7 files changed

+21
-7
lines changed

7 files changed

+21
-7
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,8 @@ reports/*.html
6464
# OS
6565
Thumbs.db
6666
.DS_Store
67+
68+
# MCP Registry CLI
69+
mcp-publisher.exe
70+
mcp-publisher
71+
.mcpregistry_*

CHANGELOG.md

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

8+
## [0.3.4] - 2026-02-09
9+
10+
### Added
11+
- MCP Registry metadata (`server.json` + `mcp-name` verification tag in README)
12+
- `skip-existing` flag for TestPyPI in publish workflow
13+
14+
### Changed
15+
- Version bump to republish package with updated README for MCP Registry verification
16+
817
## [0.3.3] - 2026-02-09
918

1019
### Fixed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cff-version: 1.2.0
22
message: "If you use this software, please cite it as below."
33
title: "Predictive Maintenance MCP Server: An open-source framework for integrating Large Language Models with predictive maintenance and fault diagnosis workflows"
4-
version: 0.3.3
4+
version: 0.3.4
55
date-released: 2026-02-09
66
authors:
77
- family-names: Di Maggio
@@ -52,7 +52,7 @@ preferred-citation:
5252
- family-names: Di Maggio
5353
given-names: Luigi Gianpio
5454
year: 2026
55-
version: 0.3.3
55+
version: 0.3.4
5656
repository-code: "https://github.com/LGDiMaggio/predictive-maintenance-mcp"
5757
license: MIT
5858
doi: "10.5281/zenodo.17611542"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- mcp-name: io.github.LGDiMaggio/predictive-maintenance-mcp -->
44

55
[![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
6-
[![Version](https://img.shields.io/badge/version-0.3.3-brightgreen.svg)](https://github.com/LGDiMaggio/predictive-maintenance-mcp/releases)
6+
[![Version](https://img.shields.io/badge/version-0.3.4-brightgreen.svg)](https://github.com/LGDiMaggio/predictive-maintenance-mcp/releases)
77
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.17611542.svg)](https://doi.org/10.5281/zenodo.17611542)
88
[![Tests](https://github.com/LGDiMaggio/predictive-maintenance-mcp/actions/workflows/tests.yml/badge.svg)](https://github.com/LGDiMaggio/predictive-maintenance-mcp/actions/workflows/tests.yml)
99
[![codecov](https://codecov.io/gh/LGDiMaggio/predictive-maintenance-mcp/branch/main/graph/badge.svg)](https://codecov.io/gh/LGDiMaggio/predictive-maintenance-mcp)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "predictive-maintenance-mcp"
7-
version = "0.3.3"
7+
version = "0.3.4"
88
description = "Proof of Concept: AI-Powered Predictive Maintenance & Fault Diagnosis MCP Server - Industrial machinery condition monitoring, vibration analysis, bearing diagnostics, and ML-based anomaly detection through Model Context Protocol"
99
readme = "README.md"
1010
authors = [

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
"url": "https://github.com/LGDiMaggio/predictive-maintenance-mcp",
88
"source": "github"
99
},
10-
"version": "0.3.3",
10+
"version": "0.3.4",
1111
"packages": [
1212
{
1313
"registryType": "pypi",
1414
"identifier": "predictive-maintenance-mcp",
15-
"version": "0.3.3",
15+
"version": "0.3.4",
1616
"transport": {
1717
"type": "stdio"
1818
},

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
vibration analysis, and predictive maintenance.
66
"""
77

8-
__version__ = "0.3.3"
8+
__version__ = "0.3.4"
99
__author__ = "Luigi Gianpio Di Maggio"
1010
__license__ = "MIT"
1111

0 commit comments

Comments
 (0)