Compare commits

1 Commits

Author SHA1 Message Date
cuddle-please
7b176a706e chore(release): 0.0.2
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-07-22 07:15:05 +00:00
2 changed files with 1 additions and 6 deletions

View File

@@ -6,11 +6,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.0.3] - 2025-07-23
### Added
- only error on non required values
## [0.0.2] - 2025-07-22 ## [0.0.2] - 2025-07-22
### Added ### Added

View File

@@ -94,7 +94,7 @@ OUTER:
} }
valueStr, err := defaultLogger.Load().Get(ctx, tag.Env) valueStr, err := defaultLogger.Load().Get(ctx, tag.Env)
if err != nil && tag.Required { if err != nil {
errs = append(errs, fmt.Errorf("field: %s failed to load: %w", field.Name, err)) errs = append(errs, fmt.Errorf("field: %s failed to load: %w", field.Name, err))
continue OUTER continue OUTER
} }