Skip to content

Commit 71f00ec

Browse files
committed
chore: bump version to 0.8.5
1 parent 4e89ef0 commit 71f00ec

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.5] - 2026-04-06
9+
10+
### Fixed
11+
12+
- Use `Z` suffix for UTC timestamps instead of `+00:00` to match server schema requirements
13+
- Normalize caller-supplied `+00:00` offsets to `Z` in `LogEntry.__post_init__`
14+
- Omit `trace_id` from `to_dict()` when `None` — server rejects null values
15+
16+
### Contributors
17+
18+
- [@TomatoInOil](https://github.com/TomatoInOil)[#4](https://github.com/logtide-dev/logtide-python/pull/4)
19+
820
## [0.8.4] - 2026-03-21
921

1022
### Added
@@ -79,5 +91,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7991
- FastAPI middleware for auto-logging HTTP requests
8092
- Full type hints support for Python 3.8+
8193

94+
[0.8.5]: https://github.com/logtide-dev/logtide-python/compare/v0.8.4...v0.8.5
8295
[0.8.4]: https://github.com/logtide-dev/logtide-python/compare/v0.1.0...v0.8.4
8396
[0.1.0]: https://github.com/logtide-dev/logtide-python/releases/tag/v0.1.0

logtide_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
QueryOptions,
2424
)
2525

26-
__version__ = "0.8.4"
26+
__version__ = "0.8.5"
2727

2828
__all__ = [
2929
# Clients

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "logtide-sdk"
7-
version = "0.8.4"
7+
version = "0.8.5"
88
description = "Official Python SDK for LogTide - Self-hosted log management with async client, logging integration, batching, retry, circuit breaker, and middleware"
99
readme = "README.md"
1010
license = {text = "MIT"}

0 commit comments

Comments
 (0)