Skip to content

Commit 5873e34

Browse files
committed
feat: add release schedule page
Adds a release schedule page to provide visibility into planned and released versions of Kroxylicious. This helps users and contributors track upcoming releases and their target dates. The page includes milestones linked to GitHub for detailed tracking. Assisted-by: Claude Sonnet 4.5 <noreply@anthropic.com> Signed-off-by: Robert Young <robertyoungnz@gmail.com>
1 parent 16eb6e1 commit 5873e34

2 files changed

Lines changed: 46 additions & 0 deletions

File tree

_includes/footer.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ <h1 class="fs-5">Links</h1>
5151
Download
5252
</a>
5353
</li>
54+
<li class="mb-2">
55+
<a class="text-body link-underline-dark link-underline-opacity-0 link-underline-opacity-10-hover" href="{{ '/release-schedule/' | absolute_url }}">
56+
Release Schedule
57+
</a>
58+
</li>
5459
<li class="mb-2">
5560
<a class="text-body link-underline-dark link-underline-opacity-0 link-underline-opacity-10-hover" href="{{ '/quickstarts/' | absolute_url }}">
5661
Quickstarts

release-schedule.markdown

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
layout: default
3+
title: Release Schedule
4+
permalink: /release-schedule/
5+
---
6+
7+
<div class="container-xxl krx-gutter py-5">
8+
<div class="row">
9+
<div class="col">
10+
<h1>Release Schedule</h1>
11+
<p>This page documents the planned and released versions of Kroxylicious.</p>
12+
13+
<div class="table-responsive mt-4">
14+
<table class="table table-striped table-hover">
15+
<thead>
16+
<tr>
17+
<th scope="col">Release</th>
18+
<th scope="col">Planned Release Date</th>
19+
<th scope="col">Milestone</th>
20+
<th scope="col">Status</th>
21+
</tr>
22+
</thead>
23+
<tbody>
24+
<tr>
25+
<td>Kroxylicious 0.21.0</td>
26+
<td>May 15, 2026</td>
27+
<td><a href="https://github.com/kroxylicious/kroxylicious/milestone/27">0.21.0</a></td>
28+
<td><span class="badge bg-primary">Planned</span></td>
29+
</tr>
30+
<tr>
31+
<td>Kroxylicious 0.22.0</td>
32+
<td>July 3, 2026</td>
33+
<td><a href="https://github.com/kroxylicious/kroxylicious/milestone/10">0.22.0</a></td>
34+
<td><span class="badge bg-primary">Planned</span></td>
35+
</tr>
36+
</tbody>
37+
</table>
38+
</div>
39+
</div>
40+
</div>
41+
</div>

0 commit comments

Comments
 (0)