Skip to content

Commit de5a6ea

Browse files
committed
Prep v0.0.3
1 parent 4f9ec01 commit de5a6ea

5 files changed

Lines changed: 315 additions & 13 deletions

File tree

CHANGELOG.md

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

1515
---
1616

17+
## [0.0.3] - 2025-10-26
18+
19+
### Changed
20+
- added twine
21+
- run with uv run
22+
23+
---
24+
1725
## [0.0.2] - 2025-10-26
1826

1927
### Changed
@@ -38,6 +46,7 @@ and this project adheres to **[Semantic Versioning](https://semver.org/spec/v2.0
3846
Tag the repository with `vX.Y.Z` to publish a release.
3947
- Documentation and badges are updated per tag and aliased to **latest**.
4048

41-
[Unreleased]: https://github.com/civic-interconnect/civic-transparency-py-sdk/compare/v0.0.2...HEAD
49+
[Unreleased]: https://github.com/civic-interconnect/civic-transparency-py-sdk/compare/v0.0.3...HEAD
50+
[0.0.3]: https://github.com/civic-interconnect/civic-transparency-py-sdk/releases/tag/v0.0.3
4251
[0.0.2]: https://github.com/civic-interconnect/civic-transparency-py-sdk/releases/tag/v0.0.2
4352
[0.0.1]: https://github.com/civic-interconnect/civic-transparency-py-sdk/releases/tag/v0.0.1

DEVELOPER.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,20 +51,20 @@ uv run pytest
5151

5252
Run the pre-commit hooks (twice, if needed):
5353

54-
```bash
54+
```shell
5555
pre-commit run --all-files
5656
```
5757

5858
## DEV 3. Regenerate (Optional) and Build and Inspect Package
5959

60-
```bash
61-
civic-us-cd118 fetch
62-
civic-us-cd118 export
63-
civic-us-cd118 index
64-
civic-us-cd118 cleanup
60+
```shell
61+
uv run civic-us-cd118 fetch
62+
uv run civic-us-cd118 export
63+
uv run civic-us-cd118 index
64+
uv run civic-us-cd118 cleanup
6565
```
6666

67-
```pwsh
67+
```shell
6868
uv build
6969

7070
$TMP = New-Item -ItemType Directory -Path ([System.IO.Path]::GetTempPath()) -Name ("wheel_" + [System.Guid]::NewGuid())
@@ -75,7 +75,7 @@ Remove-Item -Recurse -Force $TMP
7575
7676
## DEV 4. Build and Preview Docs
7777
78-
```pwsh
78+
```shell
7979
uv run mkdocs build --strict
8080
uv run mkdocs serve
8181
```
@@ -85,7 +85,7 @@ When done reviewing, use CTRL c or CMD c to quit.
8585
8686
## DEV 5. Clean Artifacts (Optional)
8787
88-
```pwsh
88+
```shell
8989
Get-ChildItem -Path . -Recurse -Directory -Filter "*__pycache__*" | Remove-Item -Recurse -Force
9090
Get-ChildItem -Path . -Recurse -Directory -Filter ".*_cache" | Remove-Item -Recurse -Force
9191
Get-ChildItem -Path "src" -Recurse -Directory -Name "*.egg-info" | Remove-Item -Recurse -Force

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ dev = [ # Add all to deptry ignores
4545
"pytest",
4646
"pytest-cov",
4747
"pytest-env",
48+
"twine",
4849
"validate-pyproject",
4950
]
5051
docs = [ # Add all to deptry ignores
@@ -126,6 +127,7 @@ DEP002 = [
126127
"pytest",
127128
"pytest-cov",
128129
"pytest-env",
130+
"twine",
129131
"validate-pyproject",
130132
# Docs dependencies
131133
"mike",

src/civic_data_boundaries_us_cd118/_version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
commit_id: COMMIT_ID
2929
__commit_id__: COMMIT_ID
3030

31-
__version__ = version = '0.0.2.dev0'
32-
__version_tuple__ = version_tuple = (0, 0, 2, 'dev0')
31+
__version__ = version = '0.0.3.dev0'
32+
__version_tuple__ = version_tuple = (0, 0, 3, 'dev0')
3333

34-
__commit_id__ = commit_id = 'g5be8913ca'
34+
__commit_id__ = commit_id = 'g4f9ec01a4'

0 commit comments

Comments
 (0)