coach_zed 0.5.2 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/coach_zed/prompt_builder.rb +2 -0
- data/lib/coach_zed/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bab6c7be80897a3d1672f65a41af5ee6d3aeb399053a212302a156a5f895bdec
|
|
4
|
+
data.tar.gz: b2fb1223166a76a6e3f5ff55dbecbf6898acaec41b9ba2d5409bfd56968a3f82
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 76be85ce593d071c2653895d19ed2debb5782077e39ef88c733de366837baa2acd520762164a2c05d6dc72b98d940b3fc8d08afd211312ba0cdd957eb3d8d34f
|
|
7
|
+
data.tar.gz: bf3d000c3bd677f24ec921c61b87c431840664f638bf0aaa68e29b4946ed4ba60ddeba31538955539337fecb817f21e38c91b3dc438e63b43076de3ca92c5a52
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
## [](https://github.com/rossta/coach_zed/compare/v0.5.2...v) (2026-06-17)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* reinforce schedule length in prompt ([4cee0a3](https://github.com/rossta/coach_zed/commit/4cee0a371ce0270a7da13d24a2a970ef5a243788))
|
|
1
6
|
## [](https://github.com/rossta/coach_zed/compare/v0.5.1...v) (2026-06-17)
|
|
2
7
|
|
|
3
8
|
### Bug Fixes
|
|
@@ -26,6 +26,8 @@ class CoachZed
|
|
|
26
26
|
|
|
27
27
|
Rules:
|
|
28
28
|
- Produce exactly #{generation_days} entries for the requested time period.
|
|
29
|
+
- Set `program_length_days` to exactly #{generation_days}.
|
|
30
|
+
- Keep `program_length_days` equal to the number of entries in `days`.
|
|
29
31
|
- Include rest days when appropriate.
|
|
30
32
|
- Use only workouts that exist in the catalog.
|
|
31
33
|
- Match the athlete's goals and the requested time period.
|
data/lib/coach_zed/version.rb
CHANGED