forked from chaaz/versio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.html
1039 lines (815 loc) · 48.7 KB
/
CHANGELOG.html
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
ul {
margin: 0;
padding: 0;
}
html {
margin: 10px;
font-family: Arial, Helvetica, sans-serif;
}
.release {
border-top: 2px solid lightgray;
margin-bottom: 20px;
}
.release-head {
font-size: 150%;
margin-bottom: 10px;
margin-top: 10px;
}
.dep {
margin-left: 10px;
margin-bottom: 10px;
}
.pr {
margin-left: 10px;
margin-bottom: 10px;
}
.pr-head {
font-size: 120%;
margin-bottom: 10px;
}
.commit {
margin-left: 10px;
margin-bottom: 20px;
}
.commit:first-child {
margin-top: 15px;
}
.commit-head {
margin-bottom: 10px;
}
.msg {
margin-top: 10px;
margin-left: 26px;
}
.caret {
cursor: pointer;
-webkit-user-select: none; /* Safari 3.1+ */
-moz-user-select: none; /* Firefox 2+ */
-ms-user-select: none; /* IE 10+ */
user-select: none;
}
.caret::before {
content: "\229E";
font-size: 14pt;
color: #aaa;
display: inline-block;
vertical-align: bottom;
text-align: bottom;
margin-right: 6px;
width: 20px;
}
.caret-down::before {
content: "\229F";
font-size: 14pt;
color: #aaa;
display: inline-block;
vertical-align: bottom;
text-align: bottom;
margin-right: 6px;
width: 20px;
/*
-ms-transform: rotate(90deg); /* IE 9
-webkit-transform: rotate(90deg); /* Safari
transform: rotate(90deg);
*/
}
.nested {
display: none;
}
.active {
display: block;
}
</style>
<script>
</script>
</head>
<body>
<h1>Changelog</h1>
<p>The latest release was 2023-01-06.</p>
<!-- ### VERSIO BEGIN CONTENT ### -->
<!-- ### VERSIO CONTENT 2023-01-06 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.7.1 : 2023-01-06</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span><a href="https://github.com/chaaz/versio/pull/23">PR 23</a> (none): Improve installation docs</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/38c91b0b9c1f48387d1d4c64629935640b5215d7">38c91b0</a> (none): docs: improve installation docs</div>
<pre class="msg nested">docs: improve installation docs</pre>
</div>
</div>
</div>
<div class="pr">
<div class="pr-head"><span class="caret"></span>Other commits (patch)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/1325bc2092cfecc18e78287dca5362b421d5ce6d">1325bc2</a> (none): build: remove winbuild test flow</div>
<pre class="msg nested">build: remove winbuild test flow</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/c33090a9c5d13050dfa45ef783e3e4470904c764">c33090a</a> (patch): fix: upgrade dependencies</div>
<pre class="msg nested">fix: upgrade dependencies</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/f85f78c1f880ab6f16dde98ccbfd0608aa0e4c98">f85f78c</a> (none): docs: update all docs</div>
<pre class="msg nested">docs: update all docs</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/e20f19b3cbb3c58dc430e956afbba0ec625c38c7">e20f19b</a> (none): docs: update legal for new year</div>
<pre class="msg nested">docs: update legal for new year</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2022-12-26 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.7.0 : 2022-12-26</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (minor)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/95e0c0f35e7d375250f1413ea25310ea01216807">95e0c0f</a> (patch): fix: clippy</div>
<pre class="msg nested">fix: clippy</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/a52962b02f3e31b72f9336620b1dd4212772b695">a52962b</a> (none): build: bump actions</div>
<pre class="msg nested">build: bump actions</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/32f243dd8cd564b0f10327ff2718571c8b0c9705">32f243d</a> (none): build: see if this fixes windows</div>
<pre class="msg nested">build: see if this fixes windows</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/17800e841b51d23394f3ff0043fcbf3be1e84cb4">17800e8</a> (none): build: update winbuild</div>
<pre class="msg nested">build: update winbuild</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/1b7ee2b1563e36241dfc06521decc3cea15aebbf">1b7ee2b</a> (none): build: add winbuild job for debug</div>
<pre class="msg nested">build: add winbuild job for debug</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/93a67e998c2bff619cf6b0f8ed7d6543ef009eb5">93a67e9</a> (patch): fix: add "exact" match flag</div>
<pre class="msg nested">fix: add "exact" match flag</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/9ef26b1c94f6564d71a0afaefdd3584997784e11">9ef26b1</a> (minor): feat: Added support for customizing commit</div>
<pre class="msg nested">feat: Added support for customizing commit
Signed-off-by: Robin Ilyk <[email protected]></pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/21c22e53f7bcd58b78d15bb8727c7902a8458047">21c22e5</a> (patch): fix: format</div>
<pre class="msg nested">fix: format</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/9eb01710e86d152ddb89529e68af4bb129c497c4">9eb0171</a> (patch): fix: update clap</div>
<pre class="msg nested">fix: update clap</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/bf9fe83d7702b6d366532efff7073902e4b37078">bf9fe83</a> (none): docs: include flows usecase</div>
<pre class="msg nested">docs: include flows usecase</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2022-09-05 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.6.5 : 2022-09-05</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (patch)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/8c3d5cf0ddc7ca2d2f28475612dad98ad7d03d31">8c3d5cf</a> (patch): fix: clippy fmt</div>
<pre class="msg nested">fix: clippy fmt</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/5b776df0c101c146af6c4fdd26784264362ffcfb">5b776df</a> (patch): fix: more complete separator handling</div>
<pre class="msg nested">fix: more complete separator handling</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/f27dac91f7422f52f12431c84ea653a26664882a">f27dac9</a> (patch): fix: allow slash in tag_prefix</div>
<pre class="msg nested">fix: allow slash in tag_prefix</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2022-06-23 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.6.4 : 2022-06-23</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (patch)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/6e1f802095568a411def1707346484aeb4380c19">6e1f802</a> (patch): fix: clippy</div>
<pre class="msg nested">fix: clippy</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2022-06-23 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.6.3 : 2022-06-23</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (patch)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/91bbd3950495277a38b55f9d550f6807b72356d6">91bbd39</a> (patch): fix: update deps</div>
<pre class="msg nested">fix: update deps</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/da6acfc77dfb743d8ab2cfa45befe17399a5a483">da6acfc</a> (patch): fix: bump git2 version</div>
<pre class="msg nested">fix: bump git2 version</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/ffbdb59d9cce16a63cb0b8363c3e2b120ded5140">ffbdb59</a> (none): docs: cleanup and format</div>
<pre class="msg nested">docs: cleanup and format</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/b49e522ea308c8d7e69379c6ec460af00c83897f">b49e522</a> (none): docs: todo</div>
<pre class="msg nested">docs: todo</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/61582bc340920bc69407da79ef1e753893a2df11">61582bc</a> (none): docs: tweak install</div>
<pre class="msg nested">docs: tweak install</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/90de827ac6189644c0ba425ab106173338bb8573">90de827</a> (none): docs: install instructs. Fixes #10</div>
<pre class="msg nested">docs: install instructs. Fixes #10</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/86aad20dd18a35089ba93b64a3bc66357d1fddd6">86aad20</a> (none): docs: fix formatting</div>
<pre class="msg nested">docs: fix formatting</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/99b47eb65d298a546cdf4b1ea5f11ae3ce98a2bd">99b47eb</a> (none): docs: update contributing</div>
<pre class="msg nested">docs: update contributing</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/c4835d64f2a996317c85e54de750dc2ac3bd28db">c4835d6</a> (none): build: upgrade to versio-actions v1.2</div>
<pre class="msg nested">build: upgrade to versio-actions v1.2</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2021-08-31 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.6.2 : 2021-08-31</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (patch)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/f410430db6b8179818f1b71514a8dcb032b08263">f410430</a> (patch): fix: improve failed parse message</div>
<pre class="msg nested">fix: improve failed parse message</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/3ed50dbd19febe5b464f64c3f1c2f46b187179d7">3ed50db</a> (patch): fix: upgrade dependency and docs</div>
<pre class="msg nested">fix: upgrade dependency and docs</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/6844d3ec972c5d89bd8cad43b060cc3bd9a02658">6844d3e</a> (patch): fix: add release --lock-tags</div>
<pre class="msg nested">fix: add release --lock-tags</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/1fb1e4fb138558b7aa8f9853c48dc8185196a91e">1fb1e4f</a> (none): build: bump dependencies</div>
<pre class="msg nested">build: bump dependencies</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/c891f2a3a5d40959b2cdd5b91557a989db4500f0">c891f2a</a> (none): docs: update issue templates</div>
<pre class="msg nested">docs: update issue templates</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/64e6bc90d324fe15009e382e9636b17989fd976e">64e6bc9</a> (none): docs: Create Code of Conduct</div>
<pre class="msg nested">docs: Create Code of Conduct</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2021-08-24 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.6.1 : 2021-08-24</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (patch)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/36d847e573625688976141b68403ff6302acb5e3">36d847e</a> (patch): fix: remove nested runtimes</div>
<pre class="msg nested">fix: remove nested runtimes</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/9b7ef9fad72a3db42e5e30c6eaa659e8a872bd92">9b7ef9f</a> (none): docs: add project info to changelog variable docs</div>
<pre class="msg nested">docs: add project info to changelog variable docs</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2021-08-23 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.6.0 : 2021-08-23</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (minor)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/0d98397e813659cafb3357c15b9312d477f13100">0d98397</a> (patch): fix: add project info to template</div>
<pre class="msg nested">fix: add project info to template</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/ddb32dff40acbffc1ba641495807aea163141a27">ddb32df</a> (none): style: clippy and fmt</div>
<pre class="msg nested">style: clippy and fmt</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/9c7ba6fd6c9fff93ae5de1f6c584234e4830150c">9c7ba6f</a> (patch): fix: improve changelogs</div>
<pre class="msg nested">fix: improve changelogs</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/b7a2ec73161333379647ccdfb6f25ffb8dbf7a10">b7a2ec7</a> (none): docs: morebetter for recent/future features</div>
<pre class="msg nested">docs: morebetter for recent/future features</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/aa5ec1b576aee745c5ec8cee2fe8b070afdd6137">aa5ec1b</a> (minor): feat: add changelog management</div>
<pre class="msg nested">feat: add changelog management</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/8db7afd6e669d947a1ca1e9d6ac116213c5821bd">8db7afd</a> (none): docs: add/fix some instructions</div>
<pre class="msg nested">docs: add/fix some instructions</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2021-08-19 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.5.4 : 2021-08-19</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (patch)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/69a2efb66e8d9b0d24c06bdd89e7e390b11073b8">69a2efb</a> (patch): fix: revert to dynlib on Windows</div>
<pre class="msg nested">fix: revert to dynlib on Windows</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/392751e3be88244312365cfaf90e57d0b35326bd">392751e</a> (patch): fix: misc windows paths</div>
<pre class="msg nested">fix: misc windows paths</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2021-08-18 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.5.3 : 2021-08-18</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (patch)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/15347592a063ca32dead7aeb9ba4d13b203702ad">1534759</a> (none): build: restore cargo tests</div>
<pre class="msg nested">build: restore cargo tests</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/7bd84c3b88268e150b0547861e0e24e2bc35ed34">7bd84c3</a> (none): build: msys2 path inherit</div>
<pre class="msg nested">build: msys2 path inherit</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/aca34e3f4b2f140830f818118b27c9f27a9fcde6">aca34e3</a> (none): build: avoid python subprocess issues</div>
<pre class="msg nested">build: avoid python subprocess issues</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/0a75acd48ed24629ccb1707086a5d0eeae92980b">0a75acd</a> (none): build: only msys on windows</div>
<pre class="msg nested">build: only msys on windows</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/fbc3998444cb8ca2f962379299f41d038cf85ae7">fbc3998</a> (none): build: try with setup-msys2</div>
<pre class="msg nested">build: try with setup-msys2</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/54543cc68c801ee53c0451a3465aaa0cd2c4637f">54543cc</a> (none): build: try msys-devel in mingw64</div>
<pre class="msg nested">build: try msys-devel in mingw64</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/c095c63f533985e1633d7b02daa8cb106b2ad13b">c095c63</a> (none): build: msys2 no good, back to mingw</div>
<pre class="msg nested">build: msys2 no good, back to mingw</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/16725503e470220b8f0d6a9bf974219966d0aac2">1672550</a> (none): build: windows try msys2 take 3</div>
<pre class="msg nested">build: windows try msys2 take 3</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/fbead3bf029d54f7f7b9f505da9c05a991372f23">fbead3b</a> (none): build: windows try msys2 take 2</div>
<pre class="msg nested">build: windows try msys2 take 2</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/a23b2b4fe50d1bf30e73fcdaa4886adaa5aa3815">a23b2b4</a> (none): build: windows try msys2</div>
<pre class="msg nested">build: windows try msys2</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/e50605b885078588f4d6ea339aa05186064afba4">e50605b</a> (none): build: windows spaces in paths 2</div>
<pre class="msg nested">build: windows spaces in paths 2</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/db13c97f6d1d2061ef32a191d5c965188fd99ad7">db13c97</a> (none): build: windows spaces in paths</div>
<pre class="msg nested">build: windows spaces in paths</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/b253e95c3e3626db704b394fdfaefe293c363528">b253e95</a> (none): build: what is path</div>
<pre class="msg nested">build: what is path</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/4edb64b72e221dd6a64f73b3720ba4b803676085">4edb64b</a> (none): build: weird windows paths again</div>
<pre class="msg nested">build: weird windows paths again</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/ed17d4e905bd21e89f36c6a8bcfde4f2e04216ad">ed17d4e</a> (none): build: weird windows paths</div>
<pre class="msg nested">build: weird windows paths</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/cc933ad9cd78630a13602c19fc234e23da974b70">cc933ad</a> (none): build: fix windows gpgme build</div>
<pre class="msg nested">build: fix windows gpgme build</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/a5afd8319ba23d7b4331d7162e6d600cbacd0ce8">a5afd83</a> (none): build: windows gpgme build</div>
<pre class="msg nested">build: windows gpgme build</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/a7b6f914a4d53f1481d0be8ce90de8e4d87b7252">a7b6f91</a> (none): build: fix include/lib paths take 2</div>
<pre class="msg nested">build: fix include/lib paths take 2</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/45c3313fb84e61dcb3afd29a45aee3a770c7ac02">45c3313</a> (none): build: fix include/lib paths</div>
<pre class="msg nested">build: fix include/lib paths</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/69d969b7fbc0abda0f405737789619ad804e145c">69d969b</a> (none): build: install version numbers</div>
<pre class="msg nested">build: install version numbers</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/7827a24a5a831469a405a15004316e0917df1613">7827a24</a> (none): build: link static on all platforms</div>
<pre class="msg nested">build: link static on all platforms</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/d0d3533a3ee84a968c186d25e3f9370eca66a840">d0d3533</a> (none): build: use static libgpg-error</div>
<pre class="msg nested">build: use static libgpg-error</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/f952b02cbe428d176f7a33cd91cf8ffa18b83907">f952b02</a> (none): build: use static gpgme</div>
<pre class="msg nested">build: use static gpgme</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/4dd78dc64666b7cf5da17ffbb95f3516e21029f7">4dd78dc</a> (none): build: take 15 windows attempt</div>
<pre class="msg nested">build: take 15 windows attempt</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/3edec30681b9805423226b4b1a32391be67c2f50">3edec30</a> (none): build: take 14 windows attempt</div>
<pre class="msg nested">build: take 14 windows attempt</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/f412d4b427c85738e5f639c8b8c081a1ed8bc157">f412d4b</a> (none): build: take 13 windows attempt</div>
<pre class="msg nested">build: take 13 windows attempt</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/ad5b60f224be4598047e5d852fe81417ff2166ba">ad5b60f</a> (none): build: take 12 windows attempt</div>
<pre class="msg nested">build: take 12 windows attempt</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/90b3bf4badee3a039d2cb183b9f0dc29e4196914">90b3bf4</a> (none): build: take 11 windows attempt</div>
<pre class="msg nested">build: take 11 windows attempt</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/0578cb540fbe7138e33a9e33c0dfbe55182bb8a9">0578cb5</a> (none): build: take 10 windows attempt</div>
<pre class="msg nested">build: take 10 windows attempt</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/d4faaf895e979fa531ab451edd36b7ac650a2e7a">d4faaf8</a> (none): build: take 9 windows attempt</div>
<pre class="msg nested">build: take 9 windows attempt</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/c38c892d73ad11f0c1e842399ac8b99c15e4bf30">c38c892</a> (none): build: take 8 windows attempt</div>
<pre class="msg nested">build: take 8 windows attempt</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/ea876563ad0052ab6d565dc9d84cc97e343c060e">ea87656</a> (none): build: take 7 windows attempt</div>
<pre class="msg nested">build: take 7 windows attempt</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/c380c8120565033cc79772e6f95b6da3d0f447d3">c380c81</a> (patch): fix: update for latest clippy</div>
<pre class="msg nested">fix: update for latest clippy</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/9f3cbfeb9e44e4495af372ca5652fea4099d6b30">9f3cbfe</a> (none): build: take 6 windows attempt</div>
<pre class="msg nested">build: take 6 windows attempt</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/915e57b4e468433f7867e94aeca45b8193b24a31">915e57b</a> (none): build: take 5 windows attempt</div>
<pre class="msg nested">build: take 5 windows attempt</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/70ba69e7e209e13c734d841598c10ac63a7aec4f">70ba69e</a> (none): build: take 4 windows attempt</div>
<pre class="msg nested">build: take 4 windows attempt</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/c9ab9e6e3c5314a406b42022f1a62bd228fbef9b">c9ab9e6</a> (none): build: take 3 windows attempt</div>
<pre class="msg nested">build: take 3 windows attempt</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/5a8e3c2f591b067862da344e2024a3b0cf71b51c">5a8e3c2</a> (none): build: another windows attempt</div>
<pre class="msg nested">build: another windows attempt</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/2142df49309b1f52299fe5f309a652a22a25377d">2142df4</a> (none): build: windows add</div>
<pre class="msg nested">build: windows add</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2021-07-28 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.5.2 : 2021-07-28</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (patch)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/50b685887a8e8abba1cf761b952e970d3e6dbd57">50b6858</a> (patch): fix: keep up-to-date</div>
<pre class="msg nested">fix: keep up-to-date</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/ba4eb70e01c14f98359cee5c0c6b64fdd4ac2dda">ba4eb70</a> (none): build: windows workflow fixes</div>
<pre class="msg nested">build: windows workflow fixes</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2021-04-26 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.5.1 : 2021-04-26</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (patch)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/646c74aafeb92a66c8e6122e644985434a784b42">646c74a</a> (patch): fix: update to latest angular</div>
<pre class="msg nested">fix: update to latest angular
This would normally be a breaking change (since it could break a user
who relied on the previous `use_angular` set), but we're still in
zero version.</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/3746ce571aa69d102e565a09b49e4c1560d6cd30">3746ce5</a> (none): build: update macos and windows build</div>
<pre class="msg nested">build: update macos and windows build</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2021-04-25 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.5.0 : 2021-04-25</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (minor)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/34fce3682580baa3c12d5a6b5b111e9a4eccd04b">34fce36</a> (none): build: more workflow</div>
<pre class="msg nested">build: more workflow</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/62da802a4a02564eb5e740f3538687db1c1d7df7">62da802</a> (none): build: update workflow</div>
<pre class="msg nested">build: update workflow</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/6aee3d887bf2184ecc0225cef126a1b69855b089">6aee3d8</a> (minor): feat: add crypto signing</div>
<pre class="msg nested">feat: add crypto signing</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/09e4e6ced2ff2f3eb7421b696f822d21ca13625b">09e4e6c</a> (none): docs: update license</div>
<pre class="msg nested">docs: update license</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/3870d74382b73cd0b8b1ccdf470273e71011c477">3870d74</a> (patch): fix: read signed prev tag</div>
<pre class="msg nested">fix: read signed prev tag</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/2342d1154478c386cf5afa6cfb006344b00ea8d3">2342d11</a> (none): style: new clippy rules</div>
<pre class="msg nested">style: new clippy rules</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/7a8f5bdee3e588ad5e440b946e4f49a18aa85abe">7a8f5bd</a> (patch): fix: use `update -w` for cargo hook</div>
<pre class="msg nested">fix: use `update -w` for cargo hook</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/990c47e573c334f22930a097aab8b3e29aedc6b5">990c47e</a> (none): docs: tweak documentation</div>
<pre class="msg nested">docs: tweak documentation</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/64c53817a2240b82193cab1a4b13534d7731a63d">64c5381</a> (patch): fix: better output</div>
<pre class="msg nested">fix: better output</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2020-11-20 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.4.5 : 2020-11-20</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (patch)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/2c026ae3d18a71b3732ff03d684a71bf0660b884">2c026ae</a> (patch): fix: add "info -A" and global "-c" flags</div>
<pre class="msg nested">fix: add "info -A" and global "-c" flags</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2020-11-09 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.4.4 : 2020-11-09</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (patch)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/12f25d39ccf5027ef15e20a33cef3cf3b0d25c39">12f25d3</a> (patch): fix: add also, docs</div>
<pre class="msg nested">fix: add also, docs</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/3510ef3804d603b0c5ed11d0962b656f2f76672b">3510ef3</a> (none): build: update actions</div>
<pre class="msg nested">build: update actions</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2020-11-09 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.4.3 : 2020-11-09</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (patch)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/54e5c9f9c31468b7e605bb2a97367c2c365aec4d">54e5c9f</a> (patch): fix: skip gitignore in init</div>
<pre class="msg nested">fix: skip gitignore in init</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2020-11-08 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 0.4.2 : 2020-11-08</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (patch)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/822d0019b8a6d47b9f320d6280f6151741c07566">822d001</a> (patch): fix: windows target</div>
<pre class="msg nested">fix: windows target</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/ce721635641b533985a31ff2ab5f847006b3f929">ce72163</a> (patch): fix: tests</div>
<pre class="msg nested">fix: tests</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/0eb93ddacdeba846c2aff7feb59b6c0de468fce1">0eb93dd</a> (patch): fix: clippy update</div>
<pre class="msg nested">fix: clippy update</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/4fa1a71acb568fd6a49e247c6000642cf1014a0e">4fa1a71</a> (patch): fix: add version chains</div>
<pre class="msg nested">fix: add version chains</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/f1fc0ea02992f7834d9a259e6228817b1d7b4808">f1fc0ea</a> (patch): fix: simplify kahn dependency handler</div>
<pre class="msg nested">fix: simplify kahn dependency handler</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/fc796df1ef55ab0576eeb5a331c4ed2603530669">fc796df</a> (none): refactor: adapt more docs and style</div>
<pre class="msg nested">refactor: adapt more docs and style</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/63dec42192a28d24b70c2934dc3beb3745d7c809">63dec42</a> (none): build(github): add indep github publish</div>
<pre class="msg nested">build(github): add indep github publish</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2020-10-04 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 2020-10-04</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (patch)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/cdedf4ea64e02f465692fcc24164c1d208e2c376">cdedf4e</a> (patch): fix: build and info options</div>
<pre class="msg nested">fix: build and info options</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2020-09-22 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 2020-09-22</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span>Commits (minor)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/200a7484344f8546ee3695629fc855beffc22ea7">200a748</a> (minor): feat: hooks and labels</div>
<pre class="msg nested">feat: hooks and labels</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/0ab3f2b5a2bba7e15af66f1962312af3c2bce434">0ab3f2b</a> (none): build: update docs and manifest</div>
<pre class="msg nested">build: update docs and manifest</pre>
</div>
</div>
</div>
</div>
</div>
<!-- ### VERSIO CONTENT 2020-09-17 ### -->
<div class="release">
<div class="release-head"><span class="caret caret-down"></span>Release 2020-09-17</div>
<div class="nested active">
<div class="pr">
<div class="pr-head"><span class="caret"></span><a href="https://github.com/chaaz/versio/pull/1">PR 1</a> (patch): Add GITHUB_TOKEN env</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/bd133fec9a33d1ee89446d171b436e174c73a3d4">bd133fe</a> (patch): fix: add GITHUB_TOKEN for easier CI</div>
<pre class="msg nested">fix: add GITHUB_TOKEN for easier CI</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/b4014b72de47c513416110810ab749b3d2383419">b4014b7</a> (none): build(changelog): add changelog</div>
<pre class="msg nested">build(changelog): add changelog</pre>
</div>
</div>
</div>
<div class="pr">
<div class="pr-head"><span class="caret"></span>Other commits (minor)</div>
<div class="nested">
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/da09bf8b60edc8f1bde98a16627dbb3c46f2ac7c">da09bf8</a> (patch): fix: better credential handling</div>
<pre class="msg nested">fix: better credential handling</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/a7140f671b403937a6d51939b608f3518968d928">a7140f6</a> (patch): fix: add info cmd and premerge compat</div>
<pre class="msg nested">fix: add info cmd and premerge compat
Add the 'info' subcommand, better PR handling for premerge checks, and
make some minor github workflow changes.</pre>
</div>
<div class="commit">
<div class="commit-head"><span class="caret"></span>Commit <a href="https://github.com/chaaz/versio/commit/7e87eeda0b3708a1cc3249288153d6b1c1caeacc">7e87eed</a> (minor): feat: use the yambler</div>
<pre class="msg nested">feat: use the yambler</pre>