Commit 1aa5f8e
committed
docs(fix[conf]): Fix version string slicing to produce '0.1' not '0.'
why: [:2] was applied to the joined string instead of the split list,
producing "0." for version "0.1.0a0". Affects search, templates, and
OpenGraph metadata.
what:
- Move [:2] inside split() call: split(".")[:2] instead of join()[:2]1 parent 3045cbc commit 1aa5f8e
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
| 69 | + | |
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
| |||
0 commit comments