Skip to content

Commit 7d30726

Browse files
wphillipmoorewphillipmoore-claude
andauthored
chore: bump version to 1.1.6 (#301)
* chore: prepare release 1.1.5 * chore: bump version to 1.1.6 Co-Authored-By: wphillipmoore-claude <255925739+wphillipmoore-claude@users.noreply.github.com> * fix: resolve ruff lint violations in prepare_release.py Co-Authored-By: wphillipmoore-claude <255925739+wphillipmoore-claude@users.noreply.github.com> --------- Co-authored-by: wphillipmoore-claude <255925739+wphillipmoore-claude@users.noreply.github.com>
1 parent fc8fd88 commit 7d30726

4 files changed

Lines changed: 19 additions & 4 deletions

File tree

CHANGELOG.md

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

8+
## [1.1.5] - 2026-02-16
9+
10+
### Bug fixes
11+
12+
- move SBOM generation after PyPI publish step (#284) (#287)
13+
- sync prepare_release.py merge message fix from canonical (#291)
14+
- sync prepare_release.py changelog conflict fix from canonical (#293)
15+
16+
### Styling
17+
18+
- fix ruff lint errors in prepare_release.py (#288)
19+
820
## [1.1.4] - 2026-02-16
921

1022
### Bug fixes
@@ -13,6 +25,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
1325
- disable MD041 for mkdocs snippet-include files
1426
- correct snippets base_path resolution for fragment includes (#267)
1527
- run mike from repo root so snippet base_path resolves in CI (#268)
28+
- remove PR_BUMP_TOKEN and add issue linkage to version bump PR
29+
- rename integration-test job to integration-tests
30+
- move SBOM generation after PyPI publish step (#284)
31+
- sync prepare_release.py with canonical version (#286)
1632

1733
### Documentation
1834

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 = "pymqrest"
7-
version = "1.1.5"
7+
version = "1.1.6"
88
description = "Python wrapper for the IBM MQ REST API"
99
readme = "README.md"
1010
license = "GPL-3.0-or-later"

scripts/dev/prepare_release.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"""
1515

1616
from __future__ import annotations
17-
1817
import argparse
1918
import re
2019
import shutil
@@ -78,7 +77,7 @@ def detect_go() -> str | None:
7877
"""Return the version from **/version.go."""
7978
if not Path("go.mod").is_file():
8079
return None
81-
for path in Path(".").rglob("version.go"):
80+
for path in Path().rglob("version.go"):
8281
text = path.read_text(encoding="utf-8")
8382
match = re.search(r'(?:const\s+)?Version\s*=\s*"([^"]+)"', text)
8483
if match:

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)