Skip to content

Commit 4c10b27

Browse files
authored
Merge pull request #3 from fa-yoshinobu/codex/release-bump-20260413
[codex] prepare 0.1.6 release
2 parents 238dbb0 + d75cf00 commit 4c10b27

5 files changed

Lines changed: 20 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## 0.1.6 - 2026-04-13
8+
9+
### Changed
10+
- CI now checks out `plc-comm-slmp-cross-verify/specs/shared` before running the shared-vector parity tests, so the package tests use the same canonical verification inputs as the cross-library harness.
11+
12+
### Fixed
13+
- `slmp.__version__` now matches the packaged project version and upcoming release tag.
14+
715
## 0.1.5 - 2026-04-01
816

917
## 0.1.4 - 2026-03-29
@@ -141,4 +149,3 @@ Initial packaged release for the current repository scope.
141149

142150

143151

144-

docsrc/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## 0.1.6 - 2026-04-13
8+
9+
### Changed
10+
- CI now checks out `plc-comm-slmp-cross-verify/specs/shared` before running the shared-vector parity tests, so the package tests use the same canonical verification inputs as the cross-library harness.
11+
12+
### Fixed
13+
- `slmp.__version__` now matches the packaged project version and upcoming release tag.
14+
715
### Added
816
- **Asynchronous API**: New `AsyncSlmpClient` for high-concurrency non-blocking I/O via `asyncio`.
917
- **UDP Support**: Full support for UDP transport in both synchronous and asynchronous clients.

internal_docs/maintainer/RELEASE_PROCESS.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Optional packaging smoke check:
4040

4141
```powershell
4242
python -m venv %TEMP%\\slmp_release_smoke
43-
%TEMP%\\slmp_release_smoke\\Scripts\\python.exe -m pip install .\\dist\\slmp_connect_python-0.1.3-py3-none-any.whl
43+
%TEMP%\\slmp_release_smoke\\Scripts\\python.exe -m pip install .\\dist\\slmp_connect_python-0.1.6-py3-none-any.whl
4444
%TEMP%\\slmp_release_smoke\\Scripts\\python.exe -c "import slmp; print(slmp.__version__)"
4545
%TEMP%\\slmp_release_smoke\\Scripts\\slmp-connection-check.exe --help
4646
```
@@ -101,6 +101,5 @@ Then:
101101

102102
## 8. Current Baseline
103103

104-
- package version: `0.1.3`
104+
- package version: `0.1.6`
105105
- validated target: Mitsubishi MELSEC iQ-R `R08CPU`
106-

pyproject.toml

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

55
[project]
66
name = "slmp-connect-python"
7-
version = "0.1.5"
7+
version = "0.1.6"
88
description = "SLMP Connect Python: client library for Mitsubishi SLMP binary communication"
99
readme = "README.md"
1010
requires-python = ">=3.10"
@@ -115,4 +115,3 @@ show_missing = true
115115

116116

117117

118-

slmp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- ``poll``
1111
"""
1212

13-
__version__ = "0.1.2"
13+
__version__ = "0.1.6"
1414

1515
from .async_client import AsyncSlmpClient
1616
from .client import SlmpClient

0 commit comments

Comments
 (0)