diff --git a/CHANGELOG b/CHANGELOG index 293d70d..829a1ec 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +2022-07-17 + +* Fix source code link + 2022-05-21 * Show error page for missing posts diff --git a/src/components/shared/layout_footer.cr b/src/components/shared/layout_footer.cr index 45437ba..315ac7b 100644 --- a/src/components/shared/layout_footer.cr +++ b/src/components/shared/layout_footer.cr @@ -4,7 +4,7 @@ class Shared::LayoutFooter < BaseComponent footer do para do span do - a "Source code", href: "https://sr.ht/~edwardloveall/scribe" + a "Source code", href: "https://sr.ht/~edwardloveall/Scribe" end span do text "Version: #{Scribe::VERSION}" diff --git a/src/version.cr b/src/version.cr index a1ac6c2..a78241d 100644 --- a/src/version.cr +++ b/src/version.cr @@ -1,3 +1,3 @@ module Scribe - VERSION = "2022-06-17" + VERSION = "2022-07-17" end