Skip to content

Commit b40b754

Browse files
Merge pull request #363 from wphillipmoore/release/1.1.11
release: 1.1.11
2 parents 7fa2bbb + 56f14f9 commit b40b754

27 files changed

Lines changed: 47 additions & 1885 deletions

.github/workflows/add-to-project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
add-to-project:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/add-to-project@v1
11+
- uses: actions/add-to-project@v1.0.2
1212
with:
1313
project-url: https://github.com/users/wphillipmoore/projects/3
1414
github-token: ${{ secrets.PROJECT_TOKEN }}

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,9 @@ jobs:
3030
steps:
3131
- name: Checkout code
3232
uses: actions/checkout@v6
33-
with:
34-
fetch-depth: 0
3533

3634
- name: Validate standards
3735
uses: wphillipmoore/standard-actions/actions/standards-compliance@develop
38-
with:
39-
commit-cutoff-sha: "df45093c260def11f409dc4f3ba86e91ec444797"
4036

4137
dependency-audit:
4238
name: "ci: dependency-audit"

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publish to PyPI
1+
name: Publish release
22

33
on:
44
push:

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/)
66
and this project adheres to [Semantic Versioning](https://semver.org/).
77

8+
## [1.1.11] - 2026-02-23
9+
10+
### Bug fixes
11+
12+
- update add-to-project action to v1.0.2 (#357)
13+
814
## [1.1.10] - 2026-02-21
915

1016
### Bug fixes

CLAUDE.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,14 @@ Both files share the same underlying standards via include directives, ensuring
9898

9999
## Development Commands
100100

101+
### Standard Tooling
102+
103+
```bash
104+
cd ../standard-tooling && uv sync # Install standard-tooling
105+
export PATH="../standard-tooling/.venv/bin:../standard-tooling/scripts/bin:$PATH" # Put tools on PATH
106+
git config core.hooksPath ../standard-tooling/scripts/lib/git-hooks # Enable git hooks
107+
```
108+
101109
### Environment Setup
102110

103111
```bash
@@ -278,7 +286,7 @@ The include directives at the top of this file load the full repository standard
278286
**Pre-flight Checklist**:
279287
- Check current branch: `git status -sb`
280288
- If on `develop`, create `feature/*` branch or get explicit approval
281-
- Enable git hooks: `git config core.hooksPath scripts/git-hooks`
289+
- Enable git hooks: `git config core.hooksPath ../standard-tooling/scripts/lib/git-hooks`
282290

283291
**Python Invocation**: Always use `uv run python3 <script>`
284292

@@ -354,14 +362,14 @@ This approach ensures all AI agents (Codex, Claude, etc.) have access to the sam
354362

355363
## Commit and PR Scripts
356364

357-
**NEVER use raw `git commit`** — always use `scripts/dev/commit.sh`.
358-
**NEVER use raw `gh pr create`** — always use `scripts/dev/submit-pr.sh`.
365+
**NEVER use raw `git commit`** — always use `st-commit`.
366+
**NEVER use raw `gh pr create`** — always use `st-submit-pr`.
359367

360368
### Committing
361369

362370
```bash
363-
scripts/dev/commit.sh --type feat --scope session --message "add retry logic" --agent claude
364-
scripts/dev/commit.sh --type fix --message "correct attribute mapping" --agent claude
371+
st-commit --type feat --scope session --message "add retry logic" --agent claude
372+
st-commit --type fix --message "correct attribute mapping" --agent claude
365373
```
366374

367375
- `--type` (required): `feat|fix|docs|style|refactor|test|chore|ci|build`
@@ -373,8 +381,8 @@ scripts/dev/commit.sh --type fix --message "correct attribute mapping" --agent c
373381
### Submitting PRs
374382

375383
```bash
376-
scripts/dev/submit-pr.sh --issue 42 --summary "Add retry logic to session"
377-
scripts/dev/submit-pr.sh --issue 42 --linkage Ref --summary "Update docs" --docs-only
384+
st-submit-pr --issue 42 --summary "Add retry logic to session"
385+
st-submit-pr --issue 42 --linkage Ref --summary "Update docs" --docs-only
378386
```
379387

380388
- `--issue` (required): GitHub issue number (just the number)

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

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ tomli==2.4.0
8686
# via pip-audit
8787
tomli-w==1.2.0
8888
# via pip-audit
89-
ty==0.0.17
89+
ty==0.0.18
9090
types-requests==2.32.4.20260107
9191
typing-extensions==4.15.0
9292
# via

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ tomli==2.4.0
8686
# via pip-audit
8787
tomli-w==1.2.0
8888
# via pip-audit
89-
ty==0.0.17
89+
ty==0.0.18
9090
types-requests==2.32.4.20260107
9191
typing-extensions==4.15.0
9292
# via

scripts/dev/commit.sh

Lines changed: 0 additions & 122 deletions
This file was deleted.

0 commit comments

Comments
 (0)