Skip to content

Commit c15af53

Browse files
committed
Prep v0.9.14
1 parent 35716c3 commit c15af53

10 files changed

Lines changed: 28 additions & 28 deletions

File tree

.github/dependabot.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ updates:
55
directory: "/"
66
schedule:
77
interval: "monthly"
8-
8+
commit-message:
9+
prefix: "ci(deps)"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# .github/workflows/ci-python.yml
1+
# .github/workflows/ci.yml
22
name: CI (Python)
33

44
on:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# .github/workflows/docs-deploy-mkdocs.yml
1+
# .github/workflows/deploy-docs.yml
22
name: Docs Deploy (MkDocs)
33

44
on:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,4 @@ jobs:
142142
143143
- name: D10) Show mike versions (after)
144144
if: hashFiles('mkdocs.yml', 'mkdocs.yaml') != ''
145-
run: uv run mike list
145+
run: uv run mike list

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ and this project adheres to **[Semantic Versioning](https://semver.org/spec/v2.0
1414

1515
---
1616

17+
## [0.9.14] - 2025-11-13
18+
19+
### Changed
20+
- Renamed actions
21+
22+
---
23+
1724
## [0.9.13] - 2025-11-13
1825

1926
### Changed
@@ -89,7 +96,11 @@ and this project adheres to **[Semantic Versioning](https://semver.org/spec/v2.0
8996
Tag the repository with `vX.Y.Z` to publish a release.
9097
- Documentation and badges are updated per tag and aliased to **latest**.
9198

92-
[Unreleased]: https://github.com/civic-interconnect/civic-transparency-py-sdk/compare/v0.9.10...HEAD
99+
[Unreleased]: https://github.com/civic-interconnect/civic-transparency-py-sdk/compare/v0.9.14...HEAD
100+
[0.9.14]: https://github.com/civic-interconnect/civic-transparency-py-sdk/releases/tag/v0.9.14
101+
[0.9.13]: https://github.com/civic-interconnect/civic-transparency-py-sdk/releases/tag/v0.9.13
102+
[0.9.12]: https://github.com/civic-interconnect/civic-transparency-py-sdk/releases/tag/v0.9.12
103+
[0.9.11]: https://github.com/civic-interconnect/civic-transparency-py-sdk/releases/tag/v0.9.11
93104
[0.9.10]: https://github.com/civic-interconnect/civic-transparency-py-sdk/releases/tag/v0.9.10
94105
[0.9.9]: https://github.com/civic-interconnect/civic-transparency-py-sdk/releases/tag/v0.9.9
95106
[0.9.8]: https://github.com/civic-interconnect/civic-transparency-py-sdk/releases/tag/v0.9.8

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ uvx ruff format .
4848
uvx deptry .
4949
uv run pyright
5050
uv run pytest
51+
uvx pre-commit autoupdate
5152
uvx pre-commit run --all-files
5253
```
5354

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![PyPI](https://img.shields.io/pypi/v/civic-lib-core.svg)](https://pypi.org/project/civic-lib-core/)
44
[![Python versions](https://img.shields.io/pypi/pyversions/civic-lib-core.svg)](https://pypi.org/project/civic-lib-core/)
55
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://opensource.org/licenses/MIT)
6-
[![CI Status](https://github.com/civic-interconnect/civic-lib-core/actions/workflows/ci-python.yml/badge.svg)](https://github.com/civic-interconnect/civic-lib-core/actions/workflows/ci-python.yml)
6+
[![CI Status](https://github.com/civic-interconnect/civic-lib-core/actions/workflows/ci.yml/badge.svg)](https://github.com/civic-interconnect/civic-lib-core/actions/workflows/ci.yml)
77
[![Docs](https://img.shields.io/badge/docs-mkdocs--material-blue)](https://civic-interconnect.github.io/civic-lib-core/)
88

99
> Shared internal utility library for [Civic Interconnect](https://github.com/civic-interconnect) projects

docs/cli.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
11
# CLI Reference
22

3+
## Quick help
4+
5+
```bash
6+
# Show top-level help
7+
civic-dev --help
8+
9+
# Show help for a subcommand
10+
civic-dev <subcommand> --help
11+
```

et --hard f4036c3

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

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ docs = [ # Add all to deptry ignores
6060
"mkdocs-material",
6161
"mkdocs-static-i18n",
6262
"mkdocstrings[python]>=0.18",
63-
"pdoc",
6463
"ruff", # required for mkdocstrings
6564
]
6665

@@ -144,7 +143,6 @@ DEP002 = [
144143
"mkdocs-material",
145144
"mkdocs-static-i18n",
146145
"mkdocstrings",
147-
"pdoc",
148146
"ruff",
149147
# Main dependencies that might not be directly imported
150148
"requests", # If not actually used in code

0 commit comments

Comments
 (0)