Skip to content

Commit aa730cc

Browse files
committed
update CHANGELOG.md and ci.yml
1 parent ef33b5b commit aa730cc

File tree

2 files changed

+55
-3
lines changed

2 files changed

+55
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ jobs:
5353
JAVA_HOME: /opt/jdk
5454
with:
5555
project: cronut-javax
56-
path: /target
56+
path: target
5757
format: 'HTML'
58-
out: cronut-javax/reports
58+
out: reports
5959
args: >
6060
--suppression ./dependency-check-suppressions.xml
6161
@@ -64,5 +64,5 @@ jobs:
6464
uses: actions/upload-artifact@v4
6565
with:
6666
name: nvd-cronut-javax-${{ github.sha }}
67-
path: cronut-javax/reports/*
67+
path: reports/*
6868
retention-days: 1

CHANGELOG.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Change Log
2+
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
3+
4+
## [1.0.1] - 2025-10-02
5+
6+
- Breakout cronut-integrant and cronut-javax into separate project repositories
7+
- Update tests re: trigger and job key identity
8+
9+
## [1.0.0] - 2025-07-23
10+
11+
Significant rewrite of internals, splitting into three projects.
12+
13+
- cronut project supports Quartz 2.5.0 and Jakarta
14+
- cronut-javax project supports Quartz 2.4.0 and Javax
15+
- cronut-integrant contains integrant bindings that were previously in core project
16+
- introduce ability to mutate scheduler, pausing, resuming, stopping, removing jobs and triggers
17+
- add ability to specify disallow-concurrent-execution at a job level
18+
- **BREAKING**: configuration for global concurrency controls renamed to :concurrent-execution-disallowed?
19+
20+
## [0.2.7] - 2020-09-30
21+
22+
Changes in preperation of more active development:
23+
24+
- Shift to factorhouse organisation on github and clojars
25+
- Contract troy-west.cronut ns to simply cronut
26+
- Change to MIT license
27+
28+
## [0.2.6] - 2020-07-14
29+
30+
- Suppport global :disallowConcurrentExecution option (you will want to understand misfires if you use this).
31+
32+
## [0.2.1 - 0.2.5] - 2019-06-19
33+
34+
- Minor dependency bumps and README improvements (#9)
35+
36+
## [0.2.0] - 2018-07-23
37+
38+
- Breaking: remove :time-zone configuration at a scheduler level (see issue #5 for more)
39+
40+
## [0.1.1] - 2018-06-15
41+
42+
- Minor bugfix for zero-argument (run once, immediately) interval execution
43+
- Updated Readme
44+
- Added tests and CircleCI integrations
45+
46+
## [0.1.0] - 2018-06-08
47+
48+
- Initial Release
49+
- Supports Cron and Simple schedules
50+
- Extensible trigger-builder multi-method
51+
- Data readers for trigger, cron, and interval
52+
- Basic integration tests

0 commit comments

Comments
 (0)