Skip to content

Commit 7ad2902

Browse files
committed
chore: repo cleanup, bump actions, fix gitignore, drop empty init (v0.7.28)
1 parent c34c38d commit 7ad2902

9 files changed

Lines changed: 1603 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818

19-
- uses: actions/setup-python@v5
19+
- uses: actions/setup-python@v6
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ jobs:
1818
security-events: write
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222

2323
- name: Initialize CodeQL
24-
uses: github/codeql-action/init@v3
24+
uses: github/codeql-action/init@v4
2525
with:
2626
languages: python
2727
queries: security-extended
2828

2929
- name: Autobuild
30-
uses: github/codeql-action/autobuild@v3
30+
uses: github/codeql-action/autobuild@v4
3131

3232
- name: Perform CodeQL Analysis
33-
uses: github/codeql-action/analyze@v3
33+
uses: github/codeql-action/analyze@v4
3434
with:
3535
category: "/language:python"

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
id-token: write
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717

18-
- uses: actions/setup-python@v5
18+
- uses: actions/setup-python@v6
1919
with:
2020
python-version: "3.12"
2121

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ __pycache__/
88
.venv/
99
.python-version
1010

11+
# Test cache
12+
.pytest_cache/
13+
1114
# Build output
1215
dist/
1316
build/

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,18 @@ Versioning: [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
1111

1212
---
1313

14+
## [0.7.28] - 2026-03-06
15+
16+
### Changed
17+
- GitHub Actions: bumped `actions/checkout` to v6, `actions/setup-python` to v6, `github/codeql-action` to v4 across all workflows
18+
19+
### Fixed
20+
- `.gitignore`: added `.pytest_cache/` exclusion
21+
- Removed empty `tests/__init__.py` (not required by pytest)
22+
- `uv.lock`: synced to match declared dev dependencies
23+
24+
---
25+
1426
## [0.7.27] - 2026-03-06
1527

1628
### Added

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "kwtsms"
3-
version = "0.7.27"
3+
version = "0.7.28"
44
description = "Python client for kwtSMS, the Kuwait SMS gateway trusted by top businesses to deliver messages worldwide, with private Sender ID, free API testing, and non-expiring credits."
55
readme = "README.md"
66
requires-python = ">=3.8"

src/kwtsms/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323

2424
__all__ = ["KwtSMS", "AsyncKwtSMS", "normalize_phone", "clean_message",
2525
"validate_phone_input", "parse_webhook"]
26-
__version__ = "0.7.27"
26+
__version__ = "0.7.28"

tests/__init__.py

Whitespace-only changes.

uv.lock

Lines changed: 1578 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)