-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGELOG.ron
1796 lines (1796 loc) · 55.4 KB
/
CHANGELOG.ron
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(
references: {
"Keep a Changelog": "https://keepachangelog.com/en/1.0.0/",
},
introduction: Some("All notable changes to this project are documented in this file.\n\nThe format is based on `Keep a Changelog`_."),
sections: [
(
references: {},
version: (
major: 3,
minor: 7,
patch: 17,
),
released: "2024-07-28T21:28:02.152505335Z",
introduction: None,
changes: (
references: {},
changes: {
"Changed": [
"MSRV: 1.80.0",
"update all dependencies manually",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 16,
),
released: "2024-06-29T14:29:25.748116470Z",
introduction: None,
changes: (
references: {},
changes: {
"Changed": [
"update Clap library manually",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 15,
),
released: "2024-06-14T11:18:07.554915233Z",
introduction: None,
changes: (
references: {},
changes: {
"Changed": [
"MSRV: 1.79.0",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 14,
),
released: "2024-06-06T12:46:42.506325516Z",
introduction: None,
changes: (
references: {},
changes: {
"Fixed": [
"Renovate: use ``matchDepNames`` instead of ``matchPackageNames``",
"issues related to ``sysexits`` update",
"update all dependencies manually",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 13,
),
released: "2024-05-27T18:49:24.111417356Z",
introduction: None,
changes: (
references: {},
changes: {
"Changed": [
"MSRV: 1.78.0",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 12,
),
released: "2024-04-15T21:00:23.208468827Z",
introduction: None,
changes: (
references: {},
changes: {
"Changed": [
"MSRV: 1.77.2",
],
"Fixed": [
"CI: code coverage report asset upload; fixes #1317",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 11,
),
released: "2024-03-31T17:17:37.713187202Z",
introduction: None,
changes: (
references: {},
changes: {
"Changed": [
"MSRV: 1.77.1",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 10,
),
released: "2024-03-22T03:41:04.335685439Z",
introduction: None,
changes: (
references: {},
changes: {
"Changed": [
"MSRV: 1.77.0",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 9,
),
released: "2024-03-08T18:14:39.632052497Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
"CI: manual trigger for rustfmt workflow; fixes #1238",
],
"Changed": [
"CI: speed up CI by defining parallel checks",
],
"Fixed": [
"CI: error when running coverage workflow on forks",
"CI: simplify PR workflow",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 8,
),
released: "2024-02-16T14:02:18.019660651Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
"CI: run complain linter over .github/ directory; fixes #1222",
"complain: ask for range mercy for rule ÆC-0003",
"complain: further test cases",
],
"Changed": [
"CI: call Renovate linter directly",
"README: apply range mercy for URL definition section",
"migrate to aeruginous_io::PathBufLikeAppendix",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 7,
),
released: "2024-02-09T15:09:58.904542579Z",
introduction: None,
changes: (
references: {},
changes: {
"Changed": [
"MSRV: 1.76.0",
],
"Deprecated": [
"PatternIOProcessor::io",
"PatternIOProcessor::io_silent",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 6,
),
released: "2024-02-02T15:27:49.280761568Z",
introduction: None,
changes: (
references: {},
changes: {
"Deprecated": [
"PatternWriter::truncate",
"PatternWriter::truncate_silently",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 5,
),
released: "2024-01-23T21:04:53.333304765Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
"complain: skip results without errors unless ``--verbose`` is set",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 4,
),
released: "2024-01-18T22:19:35.387182018Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
"comment-changes: allow for infinite number of stop conditions",
"comment-changes: option ``-@``",
],
"Changed": [
"rename CITATION.cff test assets; fixes #1112",
"rename GPL-3.0 test assets; fixes #1111",
],
"Deprecated": [
"comment-changes: option ``-S``",
"comment-changes: option ``-T``",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 3,
),
released: "2024-01-16T22:55:17.898296765Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
"CFF: cite Rust crate ``aeruginous-io``",
"README: list of dependencies",
"dependency: Rust crate ``aeruginous-io``; fixes #1088",
"documentation: software license of ``aeruginous-io`` crate",
],
"Changed": [
"migrate to ``aeruginous-io`` for file input",
],
"Deprecated": [
"ReadFile",
],
"Fixed": [
"documentation of CffCreate struct; fixes #1084",
],
"Removed": [
"LICENSEs/README.rst",
"LICENSEs/baptiste0928/cargo-install/LICENSE",
"LICENSEs/bluss/indexmap/LICENSE-Apache-2.0",
"LICENSEs/bluss/indexmap/LICENSE-MIT",
"LICENSEs/chronotope/chrono/LICENSE",
"LICENSEs/clap-rs/clap/LICENSE-Apache-2.0",
"LICENSEs/clap-rs/clap/LICENSE-MIT",
"LICENSEs/fregante/setup-git-user/LICENSE",
"LICENSEs/ron-rs/ron/LICENSE-Apache-2.0",
"LICENSEs/ron-rs/ron/LICENSE-MIT",
"LICENSEs/rust-cli/anstyle/LICENSE-Apache-2.0",
"LICENSEs/rust-cli/anstyle/LICENSE-MIT",
"LICENSEs/rust-lang/git2-rs/LICENSE-Apache-2.0",
"LICENSEs/rust-lang/git2-rs/LICENSE-MIT",
"LICENSEs/rustsec/rustsec/LICENSE-Apache-2.0",
"LICENSEs/rustsec/rustsec/LICENSE-MIT",
"LICENSEs/serde-rs/serde/LICENSE-Apache-2.0",
"LICENSEs/serde-rs/serde/LICENSE-MIT",
"LICENSEs/sorairolake/sysexits-rs/LICENSE-Apache-2.0",
"LICENSEs/sorairolake/sysexits-rs/LICENSE-MIT",
"LICENSEs/tafia/quick-xml/LICENSE",
"LICENSEs/toml-rs/toml/LICENSE-Apache-2.0",
"LICENSEs/toml-rs/toml/LICENSE-MIT",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 2,
),
released: "2024-01-12T17:47:27.569829356Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
"CHANGELOG: migrate v0.1.0 to RONLOG",
"CHANGELOG: migrate v0.2.0 to RONLOG",
"CHANGELOG: migrate v0.2.1 to RONLOG",
"CHANGELOG: migrate v1.0.0 to RONLOG",
"CHANGELOG: migrate v1.1.0 to RONLOG",
"CHANGELOG: migrate v1.1.1 to RONLOG",
"CHANGELOG: migrate v1.1.2 to RONLOG",
"CHANGELOG: migrate v2.0.0 to RONLOG",
"CHANGELOG: migrate v2.1.0 to RONLOG",
],
"Fixed": [
"curl-cffref: allow for empty commits; fixes #1074",
"logo: linewidth and contrast",
],
"Removed": [
"CHANGELOG.rst",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 1,
),
released: "2024-01-09T16:23:32.499679532Z",
introduction: None,
changes: (
references: {},
changes: {
"Fixed": [
"Fragment::from_rst: do not discard continued lines",
"test case for Fragment::from_rst",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 7,
patch: 0,
),
released: "2024-01-09T15:27:30.333232421Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
"Fragment::insert, Fragment::reference",
"Just: export generated SVG logo as PNG",
"aeruginous.png",
"further test cases for Fragment",
"impl FromRst for Fragment",
"ronlog: accept RST fragments for input",
"ronlog: accept arbitrary release date",
],
"Changed": [
"CI: enable PNG export of SVG logo",
],
"Fixed": [
"comment-changes: simplify logic",
"simplify date generation with chrono::Local::now",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 6,
patch: 4,
),
released: "2024-01-06T20:08:32.353040735Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
".github/aeruginous.asy",
"CI: recreate logo on demand",
"Just: recipe for logo generation",
"README: apply new logo",
"apply new logo in documentation",
"complain: ask for inline mercy for rule ÆC-0003",
],
"Changed": [
"complain: rename linting rules to ÆC-xxxx in accordance to new logo",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 6,
patch: 3,
),
released: "2024-01-02T21:18:22.499789244Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
"Cargo.toml: declare new feature ``uncrlf`` as part of ``utilities``",
"Just: CI step for feature ``uncrlf``",
"Uncrlf",
"uncrlf: unit tests",
],
"Changed": [
"uncrlf: outsource logic to dedicated struct",
],
"Fixed": [
"uncrlf: removing all ``\\r`` occurrences",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 6,
patch: 2,
),
released: "2024-01-02T17:50:21.417205892Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
".vscode/tasks.json",
"Cargo.toml: declare new feature ``cff``",
"Cargo.toml: declare new feature ``rs2md``",
"Cargo.toml: declare new feature ``utilities``",
"Just: recipes for local CI execution",
"Mkcws",
"README: deprecation note on cff-release-today",
"Rs2md",
"increment-version: CFF mode now also updates the release date",
"mkcws: unit tests",
"src/utilities.rs",
"tests/assets/gpl-3.0-inner.rs",
"tests/assets/gpl-3.0-outer.rs",
"tests/utilities.rs",
],
"Changed": [
"CI: execute Just recipe as SPOT",
"CI: simplify RONLOG assembly workflow",
"Cargo.toml: set default features to ``cff`` and ``utilities``",
"mkcws: outsource logic to dedicated struct",
"rs2md: outsource logic to dedicated struct",
],
"Deprecated": [
"cff-release-today",
],
"Fixed": [
"increment-version: treat all files with ``*.cff`` extension as CITATION.cff files",
],
"Removed": [
"CI: redundant Cargo-related CI jobs",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 6,
patch: 1,
),
released: "2023-12-28T19:41:38.116808857Z",
introduction: None,
changes: (
references: {},
changes: {
"Changed": [
"MSRV: 1.75.0",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 6,
patch: 0,
),
released: "2023-12-27T20:02:53.875907234Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
"CI: add ``mkcws`` feature",
"Cargo.toml: declare new feature ``mkcws``",
"Cargo.toml: keyword ``linter``; fixes #961",
"Cargo.toml: keyword ``toolbox``; fixes #960",
"README: document mkcws; fixes #967",
"mkcws",
],
"Fixed": [
"cff-create: unit tests",
],
"Removed": [
"Cargo.toml: keyword ``rs2md``; fixes #963",
"Cargo.toml: keyword ``uncrlf``; fixes #962",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 5,
patch: 0,
),
released: "2023-12-23T17:56:44.055729321Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
".justfile",
"CFF: project keywords ``cffcreate``, ``cff-create``, and ``mkcff``",
"CI: add feature-related Cargo checks to top-level CI job",
"Cargo.toml: declare new feature ``cff-create``",
"CffCreate",
"CffCreateManifestType",
"README: document cff-create",
"cff-create",
"cff-create: allow for authors without email addresses",
"cff-create: appropriate handling of multiple licenses",
"cff-create: support Cargo.toml",
"cff-create: suppress release date generation on demand",
"getter and setters for Complain",
"lint source code of entire repository as unit test",
"src/cff/cff_create.rs",
"src/cff/mod.rs",
"test cases for Fragment",
"tests/cff_create.rs; fixes #938",
],
"Changed": [
"CFF: set ``title`` to ``Aeruginous``; fixes #937",
"CI: run Cargo checks with respect to all feature configurations",
"CI: split Cargo tests into separate categories",
"move cffreference.rs to src/cff",
"rename .github/CFF/aeruginous.cff to .github/aeruginous.cff",
],
"Fixed": [
"complain: traverse directories recursively",
"coverage of src/changelog/fragment.rs",
"coverage of src/graphing/graph.rs",
"improve coverage of src/complain.rs",
"increment-version: possible edge case crash when rewriting Cargo.toml",
"ronlog: new section being unsorted",
"simplify src/changelog/fragment.rs",
"sort Renovate configuration entries by alphabet",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 4,
patch: 1,
),
released: "2023-12-18T23:09:48.882264411Z",
introduction: None,
changes: (
references: {},
changes: {
"Changed": [
"MSRV: 1.74.1",
],
"Fixed": [
"do not crash if CHANGELOG would be empty except when explicitly requested",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 4,
patch: 0,
),
released: "2023-11-14T22:53:18.771108704Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
"FromXml",
"ToXml",
"comment-changes: allow for XML fragments",
"dependency: Rust crate ``quick-xml``",
"documentation: software license of ``quick-xml`` crate",
"ronlog: accept XML fragments for input",
"src/traits/file_formats.rs",
"test case for ``FromXml`` and ``ToXml``",
],
"Removed": [
"src/traits/markdown.rs",
"src/traits/restructured_text.rs",
"src/traits/rusty_object_notation.rs",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 3,
patch: 0,
),
released: "2023-11-14T15:52:11.068390331Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
".gitattributes",
"curl-cffref/action.yml",
"documentation: software license of ``cargo-install`` GHA",
"documentation: software license of ``setup-git-user`` GHA",
],
"Changed": [
"CI: CFF update workflow now applies curl-cffref Action",
"CI: simplify RONLOG assembly workflow",
],
"Removed": [
".github/CFF/chrono.yml",
".github/CFF/citation-file-format.yml",
".github/CFF/clap.yml",
".github/CFF/sysexits.yml",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 2,
patch: 1,
),
released: "2023-10-24T15:10:09.787311213Z",
introduction: None,
changes: (
references: {},
changes: {
"Changed": [
"src/complain.rs: beautify code by application of ``is_some_and`` method",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 2,
patch: 0,
),
released: "2023-10-17T14:46:04.914806868Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
"comment-changes: stop at a given Git tag",
],
"Changed": [
"CI: determine coverage with ``cargo-llvm-cov`` instead of ``cargo-tarpaulin``",
],
"Removed": [
".tarpaulin.toml",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 1,
patch: 4,
),
released: "2023-10-09T21:31:59.762271167Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
"dependency: Rust crate ``indexmap``",
"documentation: software licenses of ``indexmap`` crate",
],
"Changed": [
"comment-changes: migrate to ``IndexMap``",
"ronlog: migrate to ``IndexMap``",
],
"Fixed": [
"ronlog: random re-ordering of existing sections",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 1,
patch: 3,
),
released: "2023-10-09T16:35:45.586327454Z",
introduction: None,
changes: (
references: {},
changes: {
"Fixed": [
"CI: pointless mirroring workflow in forks",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 1,
patch: 2,
),
released: "2023-10-06T17:42:58.937148503Z",
introduction: None,
changes: (
references: {},
changes: {
"Changed": [
"CI: apply actionlint 1.6.26",
"CI: simplify CFF update workflow",
"Renovate: sort regex packages by package name",
],
"Fixed": [
"CI: simplify RONLOG assembly",
"Renovate: automated maintenance of actionlint Docker image",
"Renovate: extract version of actionlint GH release",
"Renovate: incorrect regex for actionlint Docker image",
],
"Removed": [
".github/CFF/chrono.yml",
".github/CFF/citation-file-format.yml",
".github/CFF/clap.yml",
".github/CFF/sysexits.yml",
".github/workflows/ci.yml: obsolete ``name`` fields",
".github/workflows/comment-changes.yml: obsolete ``name`` fields",
".github/workflows/mirror.yml: obsolete ``name`` fields",
"Renovate: limit of created PRs per hour",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 1,
patch: 1,
),
released: "2023-09-19T17:47:00.124538678Z",
introduction: None,
changes: (
references: {},
changes: {
"Fixed": [
"CI: update Rust version before publishing to crates.io",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 1,
patch: 0,
),
released: "2023-08-24T18:43:53.393584145Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
".gitignore: ignore artifacts by ``cargo mutants``",
"CI: ``cargo r -- complain ...``",
"CI: show current mutation count on PR",
"Complain",
"README: document complain linter",
"ReadFile: recurse encountered directories",
"complain",
"src/complain.rs",
"tests/complain.rs",
"tests/traits.rs",
],
"Fixed": [
"CI: submit just one PR comment (coverage)",
"Renovate: MSRV patterns",
"remove obsolete call to ``vec!`` macro",
],
"Removed": [
"tests/append_as_line.rs",
"tests/colour_message.rs",
"tests/convert_buffer.rs",
"tests/prefer.rs",
"tests/rusty_object_notation.rs",
"tests/to_stderr.rs",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 0,
patch: 5,
),
released: "2023-08-15T15:22:07.642600459Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
"CI: automatically publish generated releases to crates.io",
"CI: automatically update CFF entry of chrono on certain pushes to main",
"increment-version: further test cases",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 0,
patch: 4,
),
released: "2023-08-01T18:12:43.054648338Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
".github/workflows/rustfmt.yml",
"CI: automatically update CFF entry of sysexits-rs on certain pushes to main",
"increment-version: add dedicated mode for CITATION.cff files",
],
"Changed": [
"indent JSON5 files by 4 spaces",
"indent Rust source files by 4 spaces",
],
"Fixed": [
"Renovate: submit one bundled lock file maintenance per week",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 0,
patch: 3,
),
released: "2023-07-24T20:22:08.776717613Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
"CFF: entry for ``clap`` v4.3.15",
"CFF: entry for ``clap`` v4.3.17",
"CI: automatically update CFF on pushes to main",
"README: Renovate badge",
"README: badge for latest GitHub release",
],
"Changed": [
"README: make MSRV badge brightgreen",
"README: sort badges by category (GitHub, Rust)",
"rename CFF assembly workflow to .github/workflows/cff.yml",
],
"Fixed": [
"reading from stdin now adds newlines where required",
],
},
),
),
(
references: {},
version: (
major: 3,
minor: 0,
patch: 2,
),
released: "2023-07-16T19:09:33.739326728Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
"CFF: entry for ``clap`` v4.3.12",
"comment-changes: ``--force`` mode",
"comment-changes: make message harvesting into dedicated function",
],
"Changed": [
"Renovate: disable automerge explicitly",
"Renovate: listen to renamed ``cffconvert`` repository",
"comment-changes: work on entire commit message instead of certain part",
],
"Fixed": [
"CI: prevent failing on CFF update PR merge",
],
"Removed": [
"CFF: automatically update Clap entry with Renovate",
"CI: ``cargo nextest r``",
],
},
),