diff --git a/CHANGELOG.md b/CHANGELOG.md index d4ad309..d644afb 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.1] - 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. diff --git a/project.clj b/project.clj index a40fd9e..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" @@ -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"]