Skip to content

Commit 67d022d

Browse files
committed
Add dates to release notes
1 parent 1357efa commit 67d022d

36 files changed

+42
-2
lines changed

MyApp/Configure.Ssg.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ public void ResolveGitBlobBaseUrls(IVirtualDirectory contentDir)
114114
// Add additional frontmatter info to include
115115
public class MarkdownFileInfo : MarkdownFileBase
116116
{
117+
public DateTime? Released { get; set; }
117118
}
118119

119120
public static class HtmlHelpers

MyApp/Pages/Shared/DocsPage.cshtml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,12 @@
108108
{
109109
<section class="not-prose mb-16 md:mb-12">
110110
<h1 class="@Model.TitleClass">
111+
@if (doc.Released != null)
112+
{
113+
<div class="-mt-8 mb-2 text-center text-lg font-normal text-gray-500 tracking-normal">
114+
@doc.Released.Value.ToString("MMMM dd, yyyy")
115+
</div>
116+
}
111117
@doc.Title
112118
</h1>
113119
</section>

MyApp/_pages/release-notes-history.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ slug: release-notes-history
55

66
## 2025
77

8+
- [v8.7](/releases/v8_07)
89
- [v8.6](/releases/v8_06)
910

1011
## 2024

MyApp/_pages/releases/v5_00_0.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5
3+
released: 2018-01-02
34
---
45

56
## v5.0.2 Update

MyApp/_pages/releases/v5_01_0.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.1
3+
released: 2018-04-24
34
---
45

56
As these release notes have become apologetically long we're including a Table of Contents so you can jump quickly to features you're interested in:

MyApp/_pages/releases/v5_02.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.2
3+
released: 2018-08-28
34
---
45

56
This release includes support for .NET Core 2.1, number of performance improvements with internals rewritten to use .NET's new `Span<T>` Memory Types, all SPA Templates upgraded to utilize latest CLI projects, new simpler zero-configuration Parcel SPA Templates, exciting enhanced capabilities added to `#Script` - providing a fun and productive alternative to Razor, more capable and versatile Web Apps, a minimal multi-user .NET Core Blog Web App developed in a real-time live development workflow, enhancements to Swift, Dart, TypeScript end-to-end Typed integrations, support for the latest 3rd Party dependencies, and lots more.

MyApp/_pages/releases/v5_04.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.4
3+
released: 2018-09-19
34
---
45

56
This ended up being our funnest releases in which we've built upon [significant enhancements](/releases/v5_2#servicestack-templates-remastered)

MyApp/_pages/releases/v5_05.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.5
3+
released: 2019-03-28
34
---
45

56
## ServiceStack turns 10!

MyApp/_pages/releases/v5_06.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.6
3+
released: 2019-08-07
34
---
45

56
Many features in this release are focused on providing a more enjoyable, integrated and refined development experience for creating ServiceStack Apps.

MyApp/_pages/releases/v5_07.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.7
3+
released: 2019-09-30
34
---
45

56
## .NET Core 3

0 commit comments

Comments
 (0)