docs(core): fix logz.Options -> logz.Config; bump to v1.1.0 (#1)

docs(core): fix logz.Options -> logz.Config in doc examples; bump to v1.1.0

Coordinated framework release. Documentation-only code change plus the shared
version bump.

- core/launcher/doc.go, core/logz/doc.go: logz.New(logz.Options{...}) ->
  logz.Config (Options was retired per ADR-003; the constructor takes Config).
- go.mod: contracts -> v1.1.0 (via go get + go mod tidy).

Verified by compiling the example patterns against the real API. Badge -> v1.1.0.

Reviewed-on: #1
Co-authored-by: Rene Nochebuena Guerrero <rene@nochebuena.dev>
Co-committed-by: Rene Nochebuena Guerrero <rene@nochebuena.dev>
This commit was merged in pull request #1.
This commit is contained in:
2026-08-07 18:47:18 -06:00
committed by NOCHEBUENADEV
parent 38a415c2ab
commit b01cbd3be6
6 changed files with 21 additions and 6 deletions
+1 -1
View File
@@ -15,7 +15,7 @@
//
// Usage:
//
// logger := logz.New(logz.Options{
// logger := logz.New(logz.Config{
// Level: slog.LevelDebug,
// JSON: true,
// StaticArgs: []any{"service", "api"},