To migrate from v0.0.3 to v0.1.0, replace:
py
import structlog
import structlog_gcp
gcp_logs = structlog_gcp.StructlogGCP()
structlog.configure(processors=gcp_logs.build_processors())
by:
py
import structlog
import structlog_gcp
processors = structlog_gcp.build_processors()
structlog.configure(processors=processors)
What's Changed
* Type all the project by multani in https://github.com/multani/structlog-gcp/pull/5
* Simplify interface by multani in https://github.com/multani/structlog-gcp/pull/6
**Full Changelog**: https://github.com/multani/structlog-gcp/compare/v0.0.3...v1.0.0