Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
10 changes: 5 additions & 5 deletions project.clj
Original file line number Diff line number Diff line change
@@ -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"

Expand All @@ -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"]
Expand Down