1# Changelog
2
3All notable changes to this project will be documented in this file.
4
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8## 7.1.1 (2021-12-05)
9
10### Fixes
11
12- Multiple shortcut links are now separated by newline.
13
14### Commit Statistics
15
16<csr-read-only-do-not-edit/>
17
18 - 2 commits contributed to the release.
19 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
20 - 0 issues like '(#ID)' where seen in commit messages
21
22### Commit Details
23
24<csr-read-only-do-not-edit/>
25
26<details><summary>view details</summary>
27
28 * **Uncategorized**
29    - Update changelog prior to patch release ([`e540024`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/e540024bec698b7ebd28e76c1673f0b90c553f36))
30    - fix shortcuts rendering ([`3bbc763`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/3bbc7638fa3210efa09e78d7ac423710fe9ea68e))
31</details>
32
33## 7.1.0 (2021-11-25)
34
35### New Features
36
37* Shortcut links are now printed at the end of the stream like one would expect ([#33](https://github.com/Byron/pulldown-cmark-to-cmark/pull/33))
38* email links are retained ([#34](https://github.com/Byron/pulldown-cmark-to-cmark/pull/34))
39* Now 422 of 649 common mark spec tests pass, up from 402.
40
41### Commit Statistics
42
43<csr-read-only-do-not-edit/>
44
45 - 6 commits contributed to the release.
46 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
47 - 0 issues like '(#ID)' where seen in commit messages
48
49### Commit Details
50
51<csr-read-only-do-not-edit/>
52
53<details><summary>view details</summary>
54
55 * **Uncategorized**
56    - Release pulldown-cmark-to-cmark v7.1.0 ([`68a9b6a`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/68a9b6a1cd58e60b31f989c8c5b25654f923dbeb))
57    - Update changelog ([`bbc22fe`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/bbc22fee8fbde87c23647704d253656585e97eeb))
58    - use match as expression ([`2d5d4e1`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/2d5d4e1e78c36a8188a79cc5aac944d4ee2f291b))
59    - Merge branch 'feature/32-shortcut-links' of https://github.com/aogier/pulldown-cmark-to-cmark into aogier-feature/32-shortcut-links ([`81b1eb4`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/81b1eb46509047430dde0efa0874ec4fdecf82af))
60    - retain autolink/email link format ([`e25f14d`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/e25f14df072ac4f700d097136069331e61fb781e))
61    - shortcut links implementation ([`25cc3d1`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/25cc3d1afd6d6d675d6d29ebcdd40c0d22d992fe))
62</details>
63
64## 7.0.0 (2021-11-17)
65
66The `Options` type was updated in a **breaking** fashion to allow configuring certain tokens, e.g. the `*` list token can now be configured as `-` if desired.
67
68Thanks to the author of [this PR](https://github.com/Byron/pulldown-cmark-to-cmark/pull/31).
69
70### Commit Statistics
71
72<csr-read-only-do-not-edit/>
73
74 - 7 commits contributed to the release over the course of 53 calendar days.
75 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
76 - 0 issues like '(#ID)' where seen in commit messages
77
78### Commit Details
79
80<csr-read-only-do-not-edit/>
81
82<details><summary>view details</summary>
83
84 * **Uncategorized**
85    - Release pulldown-cmark-to-cmark v7.0.0 ([`cc82b0f`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/cc82b0fdcc020aece451f0feeee1d941ce79097e))
86    - Update changelog prior to release ([`0b795a7`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/0b795a70379f334c0dc08a8208691ee824c2ee87))
87    - refactor ([`06fe6cb`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/06fe6cb1e35e8aca0cd8a4bfe9daacbdd2771698))
88    - More efficient handling of reconfigured characters ([`fa14750`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/fa147502384bf82fe192719d0c8cc81ba125cc7f))
89    - cleanup typing for special characters ([`9aef43f`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/9aef43ff21d41bc66df6096d392d0e8a035d11fc))
90    - change options to support custom syntax and add test ([`db6e12c`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/db6e12c57753cfeccb010ecdb3104e3d0bc48b41))
91    - Format with nightly ([`9313bac`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/9313bac4d0946a2e8bd0c8ca68d5fd3573891e45))
92</details>
93
94## v6.0.4 (2021-09-25)
95
96* Improves newline handling when line ends with
97  [inline HTML](https://github.com/Byron/pulldown-cmark-to-cmark/issues/28)
98
99### Commit Statistics
100
101<csr-read-only-do-not-edit/>
102
103 - 3 commits contributed to the release.
104 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
105 - 0 issues like '(#ID)' where seen in commit messages
106
107### Commit Details
108
109<csr-read-only-do-not-edit/>
110
111<details><summary>view details</summary>
112
113 * **Uncategorized**
114    - Release pulldown-cmark-to-cmark v6.0.4 ([`72e5ca5`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/72e5ca549d0acb9bd59f1d8b1c1c8f55eac604ef))
115    - prepare changelog ([`50b4188`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/50b4188dafcf1b61b7103861b733e7b886fc8da9))
116    - Don't output extra newlines after HTML before a SoftBreak ([`1a40792`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/1a407920006e554a4533c2ed9de1fe3bae57f146))
117</details>
118
119## v6.0.3 (2021-09-07)
120
121* handle spaces in links [better](https://github.com/Byron/pulldown-cmark-to-cmark/pull/27)
122
123### Commit Statistics
124
125<csr-read-only-do-not-edit/>
126
127 - 3 commits contributed to the release.
128 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
129 - 0 issues like '(#ID)' where seen in commit messages
130
131### Commit Details
132
133<csr-read-only-do-not-edit/>
134
135<details><summary>view details</summary>
136
137 * **Uncategorized**
138    - Release pulldown-cmark-to-cmark v6.0.3 ([`100c41a`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/100c41a1106032ee84c8fcdbcf788cd4426573a5))
139    - prepare release ([`b3015aa`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/b3015aa080aab57b2f15920bce1cc2fd8eb0e1a9))
140    - Handle spaces in link URIs ([`9f8f17b`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/9f8f17ba67b6f2c6d0ed1eb849f5cadc7c6fcef0))
141</details>
142
143## v6.0.2 (2021-06-23)
144
145### Commit Statistics
146
147<csr-read-only-do-not-edit/>
148
149 - 4 commits contributed to the release.
150 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
151 - 0 issues like '(#ID)' where seen in commit messages
152
153### Commit Details
154
155<csr-read-only-do-not-edit/>
156
157<details><summary>view details</summary>
158
159 * **Uncategorized**
160    - (cargo-release) version 6.0.2 ([`c1cd8ce`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/c1cd8ce70ce1f7cda2f1f55afb60ea92676b223b))
161    - prepare patch release ([`1872953`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/187295308f3632cf31b73c31ce54596320625892))
162    - Adjust test expecations - it's probably more correct now ([`6bc1f11`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/6bc1f11eeb311183ff3537f60d324177a6d10bfa))
163    - Don't add a newline after an HTML block if we're just ending another tag ([`89cc1ec`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/89cc1ec8d4f41d3b251ed08fe5127a8b81463ef0))
164</details>
165
166## v6.0.1 (2021-06-04)
167
168* handline [html in tables correctly](https://github.com/Byron/pulldown-cmark-to-cmark/pull/26).
169
170### Commit Statistics
171
172<csr-read-only-do-not-edit/>
173
174 - 14 commits contributed to the release over the course of 133 calendar days.
175 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
176 - 0 issues like '(#ID)' where seen in commit messages
177
178### Thanks Clippy
179
180<csr-read-only-do-not-edit/>
181
182[Clippy](https://github.com/rust-lang/rust-clippy) helped 1 time to make code idiomatic.
183
184### Commit Details
185
186<csr-read-only-do-not-edit/>
187
188<details><summary>view details</summary>
189
190 * **Uncategorized**
191    - (cargo-release) version 6.0.1 ([`7782189`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/77821898001b0a89e030464719256b943218b810))
192    - adjust test expectations - it's OK to degenerate information I suppose ([`f733496`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/f733496f82a67faae140cc8a1c090e4eec4f87b8))
193    - prepare release ([`874edba`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/874edba1715ca045c5ae6e97a656dc3fa0256137))
194    - Also escape closing brackets (oversight); fixes #25 ([`7fdf0da`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/7fdf0dac696e609be6cbb6c0cd78c0f9c4f24b64))
195    - Merge remote-tracking branch 'origin/main' into crlf0710/main ([`934cfab`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/934cfab09843e306a336d5324fc5c106fd9c0ce4))
196    - Allow the commonmark-spec test to fail right now… ([`65f5949`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/65f59491389db1ac5e820412455c810ecda019f9))
197    - re-enable test-suite :D ([`c2a2de3`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/c2a2de3825dda8d899ef2e5795f63f81ba0fb120))
198    - Add a test that verify current implementation against all the examples from CommonMark spec. ([`f27acce`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/f27acced939680713f613b90aa878351f15eb8a0))
199    - dependency update ([`59db24f`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/59db24fb51c2e0a441a083b0129cfae9cce1f48f))
200    - Use `make` in CI ([`4b53d20`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/4b53d20a79ee83b09e768b35654c850d502f3651))
201    - Use modern doc string type links ([`cac031a`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/cac031a3b4acd3a179c56e2537217c3c4c27a16c))
202    - thanks clippy ([`16e66da`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/16e66da8308f66e38d9821f51c09b1cde1d5802b))
203    - cargo fmt ([`9d2dc90`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/9d2dc9082088845a9eecdae9ac7b1c4a4a096f78))
204    - add makefile for convenience ([`45bfb5e`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/45bfb5ec52d8ce407be96885053c61bd1dda8549))
205</details>
206
207## v6.0.1 (2021-06-04)
208
209* also escape ']' characters
210
211## v6.0.0 (2020-10-13)
212
213### Commit Statistics
214
215<csr-read-only-do-not-edit/>
216
217 - 2 commits contributed to the release over the course of 42 calendar days.
218 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
219 - 0 issues like '(#ID)' where seen in commit messages
220
221### Commit Details
222
223<csr-read-only-do-not-edit/>
224
225<details><summary>view details</summary>
226
227 * **Uncategorized**
228    - Bump pulldown-cmark ([`3ae8ddc`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/3ae8ddc6d04806adc68bf7474b18afba11c06d06))
229    - update dependencies ([`ba51fda`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/ba51fdae86390a2db7324a2d469d79de541ffdfa))
230</details>
231
232## v5.0.0 (2020-08-02)
233
234* Allow configuring the [amount of backticks used in code blocks](https://github.com/Byron/pulldown-cmark-to-cmark/pull/18).
235  May **break** code relying on the amount of fields in the configuration struct.
236
237### Commit Statistics
238
239<csr-read-only-do-not-edit/>
240
241 - 3 commits contributed to the release.
242 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
243 - 0 issues like '(#ID)' where seen in commit messages
244
245### Commit Details
246
247<csr-read-only-do-not-edit/>
248
249<details><summary>view details</summary>
250
251 * **Uncategorized**
252    - (cargo-release) version 5.0.0 ([`a5f644a`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/a5f644a904bc2e343dd2d8e88235eba0a4ab6345))
253    - update changelog ([`5f7be5e`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/5f7be5e541491091dae331123296a1acd95d996c))
254    - Make the number of backticks in codeblocks configurable ([`c9267b5`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/c9267b55bebaff48f27e04d64da239607b7fdb4d))
255</details>
256
257## v4.0.2 (2020-06-05)
258
259* Fixed table header handling ([see PR for details](https://github.com/Byron/pulldown-cmark-to-cmark/pull/15))
260
261### Commit Statistics
262
263<csr-read-only-do-not-edit/>
264
265 - 4 commits contributed to the release over the course of 9 calendar days.
266 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
267 - 0 issues like '(#ID)' where seen in commit messages
268
269### Commit Details
270
271<csr-read-only-do-not-edit/>
272
273<details><summary>view details</summary>
274
275 * **Uncategorized**
276    - bump patch level ([`1240a59`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/1240a5925cc6dad0201348f4b4f157f7c77e9807))
277    - Avoid integer underflow ([`8774c43`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/8774c4397676673db370ac1cafdbacfb81bdf02c))
278    - Capture inline-code as table header ([`025d8c2`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/025d8c297f845c3b89296a1e962e04aa18503168))
279    - Run `cargo diet` ([`8618b3d`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/8618b3dcc1380efd6215a1bd53e3e3817d34b1df))
280</details>
281
282## v4.0.1 (2020-05-15)
283
284### Commit Statistics
285
286<csr-read-only-do-not-edit/>
287
288 - 2 commits contributed to the release.
289 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
290 - 0 issues like '(#ID)' where seen in commit messages
291
292### Commit Details
293
294<csr-read-only-do-not-edit/>
295
296<details><summary>view details</summary>
297
298 * **Uncategorized**
299    - bump patch level ([`03f4ab8`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/03f4ab8cde0172fa21d0419eec54fd72294df64d))
300    - Add a newline before code blocks if necessary ([`061f7b8`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/061f7b84bea240f3fa2ba53f7793c21fdf3ab274))
301</details>
302
303## v4.0.0 (2020-04-22)
304
305* BREAKING: Move all types from `pulldown_cmark_to_cmark::fmt::*` into `pulldown_cmark_to_cmark::*` for simplicity.
306  For most common use-cases, this means that users of `pulldown_cmark_to_cmark::fmt::cmark` now use `pulldown_cmark_to_cmark::cmark` instead.
307
308### Commit Statistics
309
310<csr-read-only-do-not-edit/>
311
312 - 1 commit contributed to the release.
313 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
314 - 0 issues like '(#ID)' where seen in commit messages
315
316### Commit Details
317
318<csr-read-only-do-not-edit/>
319
320<details><summary>view details</summary>
321
322 * **Uncategorized**
323    - Simplify library layout: move fmt::* into crate root ([`7070f33`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/7070f334ca796d85c3ea9bb164c42939daad6314))
324</details>
325
326## v3.0.1 (2020-04-22)
327
328* support for markdown embedded in HTML tags, like
329
330  ```markdown
331  <article>
332
333    * list
334    * list
335
336    **bold**
337
338  </article>
339  ```
340
341### Commit Statistics
342
343<csr-read-only-do-not-edit/>
344
345 - 10 commits contributed to the release over the course of 15 calendar days.
346 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
347 - 0 issues like '(#ID)' where seen in commit messages
348
349### Commit Details
350
351<csr-read-only-do-not-edit/>
352
353<details><summary>view details</summary>
354
355 * **Uncategorized**
356    - Bump patch level; add changelog ([`b53fbe5`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/b53fbe529d68146e6a0185ffea868d0efb90b02a))
357    - Use Rust Edition 2018 QoL improvements ([`0b414d0`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/0b414d08b65ac1a7ccdf16994beb5d02a10b6044))
358    - Move last_was_html into state definition (allowing resumes) ([`59c5a3b`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/59c5a3b8466c7967f1aa04d2c1fd9e42b366017d))
359    - Add newlines after HTML elemets if followed by more markdown ([`fcd32d0`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/fcd32d02c3a87c5d07d66efe69d2607b874d87bc))
360    - bye bye travis, we had a good time ([`2ea28f7`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/2ea28f76ce02b3a1331e243e7147a00dcd210595))
361    - add github actions ([`6b3f51c`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/6b3f51c8be99ab10f80cef12348dc8d8635bdc06))
362    - Update minor version of pulldown-cmark ([`3e856c9`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/3e856c997530d4f136e097aeb0f5f19d23b7c512))
363    - Update tests to use new code block kind ([`5b1c7c6`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/5b1c7c6cabf79d193b73b5a6d16218c59c94e727))
364    - Expose pulldown_cmark dependency to users ([`0174671`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/01746716d7256c9e2251abd5f10cb25d8ab3034e))
365    - Upgrade cmark dependency and handle new code block ([`5786f7e`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/5786f7e491770f5b050c62394179b7a648dd1271))
366</details>
367
368## v2.0.1 (2020-01-31)
369
370### Commit Statistics
371
372<csr-read-only-do-not-edit/>
373
374 - 2 commits contributed to the release.
375 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
376 - 0 issues like '(#ID)' where seen in commit messages
377
378### Commit Details
379
380<csr-read-only-do-not-edit/>
381
382<details><summary>view details</summary>
383
384 * **Uncategorized**
385    - Bump patch ([`63ac5ca`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/63ac5ca0446734373c2d88d4e7df8417dcc485b2))
386    - Dumber, byte oriented escape code ([`b3dce1a`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/b3dce1a9cc1650f0c354efa35d154231089cb5df))
387</details>
388
389## v2.0.0 (2020-01-31)
390
391### Commit Statistics
392
393<csr-read-only-do-not-edit/>
394
395 - 8 commits contributed to the release.
396 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
397 - 0 issues like '(#ID)' where seen in commit messages
398
399### Commit Details
400
401<csr-read-only-do-not-edit/>
402
403<details><summary>view details</summary>
404
405 * **Uncategorized**
406    - Upgrade to edition 2018 ([`c6fb144`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/c6fb144d64db6ff1229c0d2d98f789abdfac57b3))
407    - Optimize release ([`17e9f4e`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/17e9f4ed5ec5ae168a41ea6c29ec4b5ccf51369e))
408    - Add real-world tests, related to #8 ([`8d7378f`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/8d7378f4d233c81ad3c0a43f8d817c45dbc9561d))
409    - Add support for escapes, fixes #8 ([`91df9a2`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/91df9a24c160d32b2cc97fbebb9533fef1e0cc35))
410    - Run cargo fmt ([`d68f033`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/d68f0335136d1a38f15bbcff2cc31e4bc382a81f))
411    - Bump our version to 2.0 ([`d64853c`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/d64853c519e319b4c74164f3611aa6b54e23bae0))
412    - Fix inline-html output ([`63f4e4f`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/63f4e4f215ad238ae1475f9a6f02137d7dd53888))
413    - Update to pulldown-cmark 0.6.1 ([`4900624`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/49006242485932e9513b981678c6b9c7a8a3d9b2))
414</details>
415
416## v1.2.4 (2019-12-02)
417
418### Commit Statistics
419
420<csr-read-only-do-not-edit/>
421
422 - 5 commits contributed to the release over the course of 7 calendar days.
423 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
424 - 0 issues like '(#ID)' where seen in commit messages
425
426### Commit Details
427
428<csr-read-only-do-not-edit/>
429
430<details><summary>view details</summary>
431
432 * **Uncategorized**
433    - bump version to 1.2.4 ([`ebd8e8e`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/ebd8e8e7c6b8bfe39f1435876ed7131dc3042ee6))
434    - Merge pull request #7 from dylanowen/blockquotes ([`fee9004`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/fee90046b84216ede421e8cd467b2a1390ba265e))
435    - updated authors ([`58e5137`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/58e51373d1d517fc5e3f71ab1540411d17c87d2d))
436    - better support for blockquotes ([`6f0e4b5`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/6f0e4b547348da8e9d1f450ccb7183a7f4334287))
437    - added blockquote test cases ([`2dd8024`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/2dd8024ba73860efcc41f637696dd0b8fdf1c42f))
438</details>
439
440## v1.2.3 (2019-10-28)
441
442### Commit Statistics
443
444<csr-read-only-do-not-edit/>
445
446 - 3 commits contributed to the release.
447 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
448 - 0 issues like '(#ID)' where seen in commit messages
449
450### Commit Details
451
452<csr-read-only-do-not-edit/>
453
454<details><summary>view details</summary>
455
456 * **Uncategorized**
457    - Bump version ([`6f2382e`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/6f2382ef118afcbebe558034f63a5825870cf60b))
458    - Better approximation of contained characters ([`83fdbc0`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/83fdbc084d03a85108b13be83cf236f38e9b167e))
459    - Assure to never have truly empty header fields ([`00442f9`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/00442f9df50059c9c2560086dc3c082c763718d4))
460</details>
461
462## v1.2.2 (2019-07-03)
463
464### Commit Statistics
465
466<csr-read-only-do-not-edit/>
467
468 - 2 commits contributed to the release.
469 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
470 - 0 issues like '(#ID)' where seen in commit messages
471
472### Commit Details
473
474<csr-read-only-do-not-edit/>
475
476<details><summary>view details</summary>
477
478 * **Uncategorized**
479    - minor version bump ([`83c6edc`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/83c6edc8f63c1780985c3c1b80a6e24260da6d58))
480    - upgrade to pulldown-cmark 0.5.2; with clear regressions ([`c8e2b9b`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/c8e2b9ba0696aea9acf4165d283a4effd64ac6e7))
481</details>
482
483## v1.2.1 (2019-07-03)
484
485### Commit Statistics
486
487<csr-read-only-do-not-edit/>
488
489 - 6 commits contributed to the release over the course of 73 calendar days.
490 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
491 - 0 issues like '(#ID)' where seen in commit messages
492
493### Commit Details
494
495<csr-read-only-do-not-edit/>
496
497<details><summary>view details</summary>
498
499 * **Uncategorized**
500    - Upgrade to pulldown-cmark 0.4 ([`27909e0`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/27909e0318095a03b55dab2c81a44601a1f46981))
501    - Merge pull request #3 from integer32llc/pulldown-cmark-0.4 ([`a92f729`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/a92f729f872f60fe672c06df0c10923052dc4f5d))
502    - Add a test that generated markdown parses equivalently ([`90f134e`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/90f134ee042614421da3cafc97bee264cbdda2b3))
503    - Update table snapshot to remove whitespace in table cells ([`148c789`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/148c7892011c6ce2d11f7da43d7a19280b9a137f))
504    - Remove trailing spaces from the table test fixture ([`c6490bc`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/c6490bc346010af103928569cb67bb05298a1468))
505    - upgrade to pulldown-cmark 0.4.1 ([`9a87b4e`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/9a87b4e328766b8754b686a8344f7155aae37c8d))
506</details>
507
508## v1.2.0 (2018-12-20)
509
510### Commit Statistics
511
512<csr-read-only-do-not-edit/>
513
514 - 4 commits contributed to the release over the course of 299 calendar days.
515 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
516 - 0 issues like '(#ID)' where seen in commit messages
517
518### Commit Details
519
520<csr-read-only-do-not-edit/>
521
522<details><summary>view details</summary>
523
524 * **Uncategorized**
525    - Bump version after supporting the latest pulldown-cmark 0.2 ([`108c355`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/108c355c252d4b2dd420812ee63cd6f002a66c95))
526    - Merge pull request #1 from maralorn/master ([`7a4f8a5`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/7a4f8a5e72def83496ec695a8c6fa16602954b51))
527    - Bump dependency versions ([`5c7ddd5`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/5c7ddd5321cc39327d94ea6f9f64c4f6bd750fd5))
528    - Add crates badge ([`b3ec0d9`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/b3ec0d990d2ba83a7fdcf73acd00d0882a5164d4))
529</details>
530
531## v1.1.0 (2018-02-13)
532
533### Commit Statistics
534
535<csr-read-only-do-not-edit/>
536
537 - 5 commits contributed to the release over the course of 1 calendar day.
538 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
539 - 0 issues like '(#ID)' where seen in commit messages
540
541### Commit Details
542
543<csr-read-only-do-not-edit/>
544
545<details><summary>view details</summary>
546
547 * **Uncategorized**
548    - Bump minor ([`ba3d313`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/ba3d3133105eb5ca98dc808b224d1ad428fedb95))
549    - Support for codeblocks in codeblocks ([`a594c33`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/a594c33ec3dd5e399a0fff99faad246eeebdc9a0))
550    - Add example for codeblock in codeblock ([`fa9d980`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/fa9d980cfab8484cff0b23b3cc4043702a956f23))
551    - Some more infos for the README ([`9705eb8`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/9705eb866be7003a6dff48fb2e7b751e1e27c583))
552    - Add depndency info badge ([`1869129`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/18691296d5fc12e4f05b7a42bfec5ba56d633138))
553</details>
554
555## v1.0.0 (2018-02-11)
556
557### Commit Statistics
558
559<csr-read-only-do-not-edit/>
560
561 - 6 commits contributed to the release.
562 - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
563 - 0 issues like '(#ID)' where seen in commit messages
564
565### Commit Details
566
567<csr-read-only-do-not-edit/>
568
569<details><summary>view details</summary>
570
571 * **Uncategorized**
572    - Add tests-title ([`34598b8`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/34598b8e11b00248a15e234fc981ac71566488cb))
573    - Add project affiliations ([`55a5563`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/55a5563cf140269f90159196b2ba9b0f0f692bc5))
574    - First bunch of API docs ([`f315ab7`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/f315ab75743e40607acc1010514cad4d8b1eabc3))
575    - Update all links ([`b1e0978`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/b1e0978fa9f0c5b57a756fd8567eba436daface2))
576    - First minor adjustment before all links change. ([`5b4c1ef`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/5b4c1ef9617acc3151a862ed1e536809846f0ed2))
577    - Move everything from 'termbook'. ([`7666772`](https://github.com/Byron/pulldown-cmark-to-cmark/commit/76667725b61be24890fbdfed5e7ecdb4c1ad1dc8))
578</details>
579
580