commit 48f9df4baf1b0ccfed9ec611f1df40b84e2ff6a3
parent bfff65431cac81bb22b365c1d5407d64b4a43d09
Author: Frederic Cambus <fred@statdns.com>
Date: Thu, 28 Jul 2022 14:37:18 +0200
Release Motyl 1.0.3.
Diffstat:
2 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,13 @@
+Motyl 1.0.3 (2022-07-28)
+
+- Fix an off-by-one error, we want 20 posts in the Atom feed
+- Raise the default to 30 posts in the Atom feed
+- Remove unused feedItems directive from motyl.conf
+- Add Motyl ASCii logo header (Thanks H7!)
+- Add SPDX short license identifier in source file
+
+
+
Motyl 1.0.2 (2019-05-07)
- Add require 'date', which allows Motyl to run with Ruby 2.5+
diff --git a/bin/motyl b/bin/motyl
@@ -1,7 +1,7 @@
#!/usr/bin/env ruby
#
-# Motyl 1.0.2
+# Motyl 1.0.3
# Copyright (c) 2016-2022, Frederic Cambus
# https://github.com/fcambus/motyl
#
@@ -40,7 +40,7 @@ end
# Loading configuration
data = {
- 'version' => 'Motyl 1.0.2',
+ 'version' => 'Motyl 1.0.3',
'updated' => Time.now.strftime('%Y-%m-%dT%XZ'),
'site' => YAML.load_file('motyl.conf'),
'posts' => [],