Releases: go-pkgz/repeater
Releases · go-pkgz/repeater
v2.1.0
New Features
Execution Statistics Tracking
- Added
Stats()method to track detailed execution metrics - Track number of attempts, success/failure status, durations, and errors
- Separate tracking for work time vs delay time
Improvements
- Migrated golangci-lint configuration to v2
- Updated GitHub Actions workflow
- Code refactoring to reduce duplication
- Added thread-safety documentation
Example
stats := r.Stats()
fmt.Printf("Attempts: %d, Duration: %v\n", stats.Attempts, stats.TotalDuration)Version v2.0.0
Version 1.2.0
What's Changed
- Update project by @paskal in #2
- wrapped error handling by @sinkevichmm in #3
New Contributors
- @paskal made their first contribution in #2
- @sinkevichmm made their first contribution in #3
Full Changelog: v1.1.3...v1.2.0
Version 1.1.0
- Add context to
Docall