Skip to content

Commit fdc791b

Browse files
committed
release: v0.4.1 - fix version alignment and MCP Registry validation
- Bump all version strings to 0.4.1 (pyproject, __init__, server.json, CITATION, etc.) - Fix PyPI workflow: add skip-existing to prevent 400 on re-tag - v0.4.0 on PyPI had stale __init__ version (0.3.4); this release corrects it
1 parent 6b3d48c commit fdc791b

File tree

9 files changed

+19
-9
lines changed

9 files changed

+19
-9
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ STATISTICS_WINDOW_SIZE=1024 # For windowed statistics (future feature)
2222

2323
# Server configuration
2424
SERVER_NAME=Predictive Maintenance
25-
SERVER_VERSION=0.4.0
25+
SERVER_VERSION=0.4.1

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,5 @@ jobs:
6969

7070
- name: Publish to PyPI
7171
uses: pypa/gh-action-pypi-publish@release/v1
72+
with:
73+
skip-existing: true

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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.4.1] - 2026-02-15
9+
10+
### Fixed
11+
- Aligned `__version__` in `src/__init__.py` and `SERVER_VERSION` in `.env.example` to 0.4.x (were still 0.3.4 after merge)
12+
- Shortened `server.json` description to ≤100 characters (MCP Registry validation requirement)
13+
- Added `0.4.x` to supported versions table in `SECURITY.md`
14+
- PyPI publish: v0.4.0 was uploaded with stale `__init__` version; this release corrects it
15+
816
## [0.4.0] - 2026-02-15
917

1018
### Added

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.4.0
4+
version: 0.4.1
55
date-released: 2026-02-15
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: 2025
55-
version: 0.4.0
55+
version: 0.4.1
5656
repository-code: "https://github.com/LGDiMaggio/predictive-maintenance-mcp"
5757
license: MIT
5858
doi: "10.5281/zenodo.17611542"

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ What actually happens (include full error message)
315315
**Environment:**
316316
- OS: Windows 11 / macOS 14 / Ubuntu 22.04
317317
- Python: 3.11.x / 3.12.x
318-
- Server version: 0.4.0
318+
- Server version: 0.4.1
319319
```
320320

321321
---

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,7 @@ If you use this server in your research or projects, please cite:
704704
title = {Predictive Maintenance MCP Server: An open-source framework for integrating Large Language Models with predictive maintenance and fault diagnosis workflows},
705705
author = {Di Maggio, Luigi Gianpio},
706706
year = {2025},
707-
version = {0.4.0},
707+
version = {0.4.1},
708708
url = {https://github.com/LGDiMaggio/predictive-maintenance-mcp},
709709
doi = {10.5281/zenodo.17611542}
710710
}

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.4.0"
7+
version = "0.4.1"
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
@@ -3,12 +3,12 @@
33
"name": "io.github.LGDiMaggio/predictive-maintenance-mcp",
44
"title": "Predictive Maintenance",
55
"description": "Industrial vibration analysis, bearing fault diagnosis, ISO 20816, and ML anomaly detection",
6-
"version": "0.4.0",
6+
"version": "0.4.1",
77
"packages": [
88
{
99
"registryType": "pypi",
1010
"identifier": "predictive-maintenance-mcp",
11-
"version": "0.4.0",
11+
"version": "0.4.1",
1212
"transport": {
1313
"type": "stdio"
1414
}

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.4.0"
8+
__version__ = "0.4.1"
99
__author__ = "Luigi Gianpio Di Maggio"
1010
__license__ = "MIT"
1111

0 commit comments

Comments
 (0)