Skip to content

Commit 36ee28d

Browse files
committed
Bump version to v0.1.6 for release
1 parent d8a31c0 commit 36ee28d

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## [v0.1.6](https://github.com/replane-dev/replane-python/releases/tag/v0.1.6) - 2025-12-20
11+
1012
## [v0.1.5](https://github.com/replane-dev/replane-python/releases/tag/v0.1.5) - 2025-12-20
1113

1214
## [v0.1.4](https://github.com/replane-dev/replane-python/releases/tag/v0.1.4) - 2025-12-20

docs/source/quickstart.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@ from replane import SyncReplaneClient
2121
with SyncReplaneClient(
2222
base_url="https://replane.example.com",
2323
sdk_key="sk_live_...",
24-
) as client:
24+
) as replane:
2525
# Get a simple config value
26-
rate_limit = client.get("rate-limit")
26+
rate_limit = replane.get("rate-limit")
2727
print(f"Rate limit: {rate_limit}")
2828

2929
# Get with context for override evaluation
30-
feature_enabled = client.get(
30+
feature_enabled = replane.get(
3131
"new-feature",
3232
context={"user_id": "user-123", "plan": "premium"},
3333
)
3434
print(f"Feature enabled: {feature_enabled}")
3535

3636
# Get with fallback default
37-
timeout = client.get("request-timeout", default=30)
37+
timeout = replane.get("request-timeout", default=30)
3838
print(f"Timeout: {timeout}")
3939
```
4040

0 commit comments

Comments
 (0)