From ee887143c0a52c7547d612e22c75035f5f739543 Mon Sep 17 00:00:00 2001 From: Derek Troy-West Date: Sat, 25 Oct 2025 15:57:58 -0700 Subject: [PATCH 1/4] update dependencies --- project.clj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/project.clj b/project.clj index a40fd9e..7ca13ac 100644 --- a/project.clj +++ b/project.clj @@ -7,17 +7,17 @@ :license {:name "Apache 2.0 License" :url "https://github.com/factorhosue/slipway/blob/main/LICENSE"} - :plugins [[dev.weavejester/lein-cljfmt "0.13.4"]] + :plugins [[dev.weavejester/lein-cljfmt "0.15.3"]] :dependencies [[org.clojure/clojure "1.12.3"] [org.clojure/tools.logging "1.3.0"] - [org.quartz-scheduler/quartz "2.5.0" :exclusions [org.slf4j/slf4j-api]]] + [org.quartz-scheduler/quartz "2.5.1" :exclusions [org.slf4j/slf4j-api]]] :profiles {:dev {:resource-paths ["dev-resources"] - :dependencies [[ch.qos.logback/logback-classic "1.5.19"] + :dependencies [[ch.qos.logback/logback-classic "1.5.20"] [org.slf4j/slf4j-api "2.0.17"] [org.clojure/core.async "1.8.741"] - [clj-kondo "2025.09.22" :exclusions [org.clojure/tools.reader]]]} + [clj-kondo "2025.10.23" :exclusions [org.clojure/tools.reader]]]} :smoke {:pedantic? :abort}} :aliases {"check" ["with-profile" "+smoke" "check"] From d6a87630d88cb58bbb2bab6d2ef6381c7b69255e Mon Sep 17 00:00:00 2001 From: Derek Troy-West Date: Sat, 25 Oct 2025 16:00:52 -0700 Subject: [PATCH 2/4] prep for 1.2.1 release --- project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.clj b/project.clj index 7ca13ac..f4a4b31 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject io.factorhouse/cronut "1.2.0" +(defproject io.factorhouse/cronut "1.2.1" :description "A Clojure companion to Quartz with Jakarta compatibility" From 7edfb1b8cb07520aa3ab6c5b208bbec396543803 Mon Sep 17 00:00:00 2001 From: Derek Troy-West Date: Sat, 25 Oct 2025 16:02:28 -0700 Subject: [PATCH 3/4] prep for 1.2.1 release --- CHANGELOG.md | 4 ++++ README.md | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4ad309..88d1cc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Change Log All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/). +## [1.2.0] - 2025-10-25 + +- Update to org.quartz-scheduler/quartz "2.5.1" + ## [1.2.0] - 2025-10-02 - Separate jobs and opts, move to group/name rather than identity diff --git a/README.md b/README.md index ca18af8..7c3357a 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ # Summary [Cronut](https://github.com/factorhouse/cronut) provides a data-first [Clojure](https://clojure.org/) wrapper -for [Quartz Scheduler](https://github.com/quartz-scheduler/quartz) version `2.5.0`, compatible +for [Quartz Scheduler](https://github.com/quartz-scheduler/quartz) version `2.5.1`, compatible with [Jakarta](https://en.wikipedia.org/wiki/Jakarta_EE). Cronut supports **in-memory** scheduling of jobs within a single JVM. JDBC and distributed jobstore are not supported. From 1defab6156913cde922bfaaded6d5bc71e9ba133 Mon Sep 17 00:00:00 2001 From: Derek Troy-West Date: Sat, 25 Oct 2025 16:02:54 -0700 Subject: [PATCH 4/4] prep for 1.2.1 release --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88d1cc2..d644afb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Change Log All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/). -## [1.2.0] - 2025-10-25 +## [1.2.1] - 2025-10-25 - Update to org.quartz-scheduler/quartz "2.5.1"