From 376245c650d2719d35558c2c51d68fe557ea7247 Mon Sep 17 00:00:00 2001 From: Felisp Date: Tue, 20 Aug 2024 22:46:20 +0200 Subject: [PATCH] The versions really need to be unified in one place --- src/rss_thread_watch/core.clj | 2 +- src/rss_thread_watch/feed_generator.clj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rss_thread_watch/core.clj b/src/rss_thread_watch/core.clj index 662d6cb..0969835 100644 --- a/src/rss_thread_watch/core.clj +++ b/src/rss_thread_watch/core.clj @@ -23,7 +23,7 @@ [rss-thread-watch.utils :as u]) (:gen-class)) -(def VERSION "0.4.1") +(def VERSION "0.4.2") ;; Internal default config (def CONFIG-DEFAULT diff --git a/src/rss_thread_watch/feed_generator.clj b/src/rss_thread_watch/feed_generator.clj index e6b41e6..83a92a8 100644 --- a/src/rss_thread_watch/feed_generator.clj +++ b/src/rss_thread_watch/feed_generator.clj @@ -97,7 +97,7 @@ "Generates feed from matching items" [query-vec chod-treshold repeat? cache board-config] (let [items (filter-chod-posts query-vec chod-treshold repeat? cache) - head {:title "RSS Thread watcher v0.4.1" ;TODO: hardcoded string here, remake to reference to config.clj + head {:title "RSS Thread watcher v0.4.2" ;TODO: hardcoded string here, remake to reference to config.clj :link "https://tools.treebrary.org/thread-watcher/feed.xml" :feed-url "https://tools.treebrary.org/thread-watcher/feed.xml" :description "RSS based thread watcher"}