Skip to content

Commit 71e8317

Browse files
committed
bump: version 0.1.0 → 0.2.0
1 parent db0ec28 commit 71e8317

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 0.2.0 (2025-02-11)
4+
5+
### Fix
6+
7+
- add context managers via __enter__ methods, update usage
8+
- do not default use test db conn, error on missing vars
9+
10+
### Refactor
11+
12+
- use encode/httpcore unasync impl, restructure
13+
- fallback to env vars for NearestCity.connect(), esp in tests
14+
- export main classes in __init__.__all__ for pg_nearest_city pkg
15+
- lint all, add extra pre-commit hooks, allow env var db initialisation
16+
317
## 0.1.0 (2025-02-08)
418

519
## 0.0.0 (2025-02-08)

pg_nearest_city/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.0"
1+
__version__ = "0.2.0"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pg-nearest-city"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "Given a geopoint, find the nearest city using PostGIS (reverse geocode)."
55
authors = [
66
{name = "Sam Woodcock", email = "[email protected]"},
@@ -84,7 +84,7 @@ asyncio_default_fixture_loop_scope="function"
8484

8585
[tool.commitizen]
8686
name = "cz_conventional_commits"
87-
version = "0.1.0"
87+
version = "0.2.0"
8888
version_files = [
8989
"pyproject.toml:version",
9090
"pg_nearest_city/__version__.py",

0 commit comments

Comments
 (0)