Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -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"
}
11 changes: 11 additions & 0 deletions boot/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
7 changes: 7 additions & 0 deletions config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
12 changes: 12 additions & 0 deletions logger/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
Loading