Skip to content

Commit ba5f42c

Browse files
committed
update CHANGELOG.md and ci.yml
1 parent e559c1b commit ba5f42c

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
@@ -49,9 +49,9 @@ jobs:
4949
JAVA_HOME: /opt/jdk
5050
with:
5151
project: cronut-integrant
52-
path: /target
52+
path: target
5353
format: 'HTML'
54-
out: cronut-integrant/reports
54+
out: reports
5555
args: >
5656
--suppression ./dependency-check-suppressions.xml
5757
@@ -60,5 +60,5 @@ jobs:
6060
uses: actions/upload-artifact@v4
6161
with:
6262
name: nvd-cronut-integrant-${{ github.sha }}
63-
path: cronut-integrant/reports/*
63+
path: reports/*
6464
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)