diff --git a/.github/workflows/release-please-manifest.json b/.github/workflows/release-please-manifest.json index 3e8eb4b..2cbd8d3 100644 --- a/.github/workflows/release-please-manifest.json +++ b/.github/workflows/release-please-manifest.json @@ -1,11 +1,11 @@ { "auth": "0.6.0", - "boot": "0.7.0", + "boot": "1.0.0", "cache": "0.4.0", - "config": "0.7.0", + "config": "0.8.0", "grpc": "1.6.0", "http": "0.7.1", - "logger": "0.5.0", + "logger": "1.0.0", "data": "1.1.1", "test": "0.3.1" } diff --git a/boot/CHANGELOG.md b/boot/CHANGELOG.md index eaa1d99..b59f800 100644 --- a/boot/CHANGELOG.md +++ b/boot/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to `github.com/jesse0michael/pkg/boot` will be documented in this file by Release Please. +## [1.0.0](https://github.com/Jesse0Michael/pkg/compare/boot/v0.7.0...boot/v1.0.0) (2026-05-09) + + +### ⚠ BREAKING CHANGES + +* NewLogger now accepts a logger.Config struct instead of reading environment variables directly. LogLevel, LogOutput, LogSource, and LogFormat are now methods on Config. + +### Features + +* require Config parameter for logger.NewLogger ([0bbb1ff](https://github.com/Jesse0Michael/pkg/commit/0bbb1ffcbe30bc92d8780fed2c4468f0e557934e)) + ## [0.7.0](https://github.com/Jesse0Michael/pkg/compare/boot/v0.6.0...boot/v0.7.0) (2026-04-25) diff --git a/config/CHANGELOG.md b/config/CHANGELOG.md index ca1024c..2b31655 100644 --- a/config/CHANGELOG.md +++ b/config/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to `github.com/jesse0michael/pkg/config` will be documented in this file by Release Please. +## [0.8.0](https://github.com/Jesse0Michael/pkg/compare/config/v0.7.0...config/v0.8.0) (2026-05-09) + + +### Features + +* add file config processing ([dd76993](https://github.com/Jesse0Michael/pkg/commit/dd76993c9a2d3027352ee1f980c677ecd83db1b3)) + ## [0.7.0](https://github.com/Jesse0Michael/pkg/compare/config/v0.6.0...config/v0.7.0) (2026-04-25) diff --git a/logger/CHANGELOG.md b/logger/CHANGELOG.md index 941bcc3..1326631 100644 --- a/logger/CHANGELOG.md +++ b/logger/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to `github.com/jesse0michael/pkg/logger` will be documented in this file by Release Please. +## [1.0.0](https://github.com/Jesse0Michael/pkg/compare/logger/v0.5.0...logger/v1.0.0) (2026-05-09) + + +### ⚠ BREAKING CHANGES + +* NewLogger now accepts a logger.Config struct instead of reading environment variables directly. LogLevel, LogOutput, LogSource, and LogFormat are now methods on Config. + +### Features + +* require Config parameter for logger.NewLogger ([0bbb1ff](https://github.com/Jesse0Michael/pkg/commit/0bbb1ffcbe30bc92d8780fed2c4468f0e557934e)) +* support file output logging ([f163ba7](https://github.com/Jesse0Michael/pkg/commit/f163ba7feb476a10d9557234a952644badace6a0)) + ## [0.5.0](https://github.com/Jesse0Michael/pkg/compare/logger/v0.4.0...logger/v0.5.0) (2026-04-25)