Skip to content

Commit d51d5dc

Browse files
authored
Merge pull request #22 from factorhouse/update-deps
Update dependencies
2 parents 3bd5bd6 + 1defab6 commit d51d5dc

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
33

4+
## [1.2.1] - 2025-10-25
5+
6+
- Update to org.quartz-scheduler/quartz "2.5.1"
7+
48
## [1.2.0] - 2025-10-02
59

610
- Separate jobs and opts, move to group/name rather than identity

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Summary
77

88
[Cronut](https://github.com/factorhouse/cronut) provides a data-first [Clojure](https://clojure.org/) wrapper
9-
for [Quartz Scheduler](https://github.com/quartz-scheduler/quartz) version `2.5.0`, compatible
9+
for [Quartz Scheduler](https://github.com/quartz-scheduler/quartz) version `2.5.1`, compatible
1010
with [Jakarta](https://en.wikipedia.org/wiki/Jakarta_EE).
1111

1212
Cronut supports **in-memory** scheduling of jobs within a single JVM. JDBC and distributed jobstore are not supported.

project.clj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject io.factorhouse/cronut "1.2.0"
1+
(defproject io.factorhouse/cronut "1.2.1"
22

33
:description "A Clojure companion to Quartz with Jakarta compatibility"
44

@@ -7,17 +7,17 @@
77
:license {:name "Apache 2.0 License"
88
:url "https://github.com/factorhosue/slipway/blob/main/LICENSE"}
99

10-
:plugins [[dev.weavejester/lein-cljfmt "0.13.4"]]
10+
:plugins [[dev.weavejester/lein-cljfmt "0.15.3"]]
1111

1212
:dependencies [[org.clojure/clojure "1.12.3"]
1313
[org.clojure/tools.logging "1.3.0"]
14-
[org.quartz-scheduler/quartz "2.5.0" :exclusions [org.slf4j/slf4j-api]]]
14+
[org.quartz-scheduler/quartz "2.5.1" :exclusions [org.slf4j/slf4j-api]]]
1515

1616
:profiles {:dev {:resource-paths ["dev-resources"]
17-
:dependencies [[ch.qos.logback/logback-classic "1.5.19"]
17+
:dependencies [[ch.qos.logback/logback-classic "1.5.20"]
1818
[org.slf4j/slf4j-api "2.0.17"]
1919
[org.clojure/core.async "1.8.741"]
20-
[clj-kondo "2025.09.22" :exclusions [org.clojure/tools.reader]]]}
20+
[clj-kondo "2025.10.23" :exclusions [org.clojure/tools.reader]]]}
2121
:smoke {:pedantic? :abort}}
2222

2323
:aliases {"check" ["with-profile" "+smoke" "check"]

0 commit comments

Comments
 (0)