From f419a97c1b0c685ad1a518ab36d5da19d2834e6a Mon Sep 17 00:00:00 2001
From: kivikakk <1915+kivikakk@users.noreply.github.com>
Date: Sat, 4 Jan 2025 01:27:56 +0000
Subject: [PATCH 1/2] [skip test] update changelog
---
Cargo.lock | 2 +-
README.md | 2 +-
changelog.txt | 8 ++++++++
3 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 0d0c42f8..78584e7c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -155,7 +155,7 @@ dependencies = [
[[package]]
name = "comrak"
-version = "0.32.0"
+version = "0.33.0"
dependencies = [
"arbitrary",
"bon",
diff --git a/README.md b/README.md
index d371cae6..d496052d 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ Specify it as a requirement in `Cargo.toml`:
``` toml
[dependencies]
-comrak = "0.32"
+comrak = "0.33"
```
Comrak's library supports Rust 1.62.1+.
diff --git a/changelog.txt b/changelog.txt
index 5e49028d..e3cb0c3d 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,3 +1,11 @@
+# [v0.33.0] - 04-01-2025
+## What's Changed
+* Eliminate and dependencies. by @nicoburns in https://github.com/kivikakk/comrak/pull/514
+* Make bon builders optional by @nicoburns in https://github.com/kivikakk/comrak/pull/515
+* Make options structs exhaustive by @nicoburns in https://github.com/kivikakk/comrak/pull/516
+
+
+**Full Changelog**: https://github.com/kivikakk/comrak/compare/v0.32.0...v0.33.0
# [v0.32.0] - 17-12-2024
* rust-toolchain: remove by @charlottia in https://github.com/kivikakk/comrak/pull/493
From 2eaf9e789b40c1787a5e6b95f5b2a8d33fca0803 Mon Sep 17 00:00:00 2001
From: Talya Connor
Date: Sat, 4 Jan 2025 12:29:47 +1100
Subject: [PATCH 2/2] changelog.txt: update.
---
changelog.txt | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/changelog.txt b/changelog.txt
index e3cb0c3d..c8ca85d0 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,19 +1,23 @@
# [v0.33.0] - 04-01-2025
-## What's Changed
-* Eliminate and dependencies. by @nicoburns in https://github.com/kivikakk/comrak/pull/514
+
+Happy new year! Thanks to @nicoburns for these changes, enabling much faster
+compiles if you don't need the builders!
+
+* Eliminate `regex` and `once_cell` dependencies. by @nicoburns in https://github.com/kivikakk/comrak/pull/514
* Make bon builders optional by @nicoburns in https://github.com/kivikakk/comrak/pull/515
* Make options structs exhaustive by @nicoburns in https://github.com/kivikakk/comrak/pull/516
+Diff: https://github.com/kivikakk/comrak/compare/v0.32.0...v0.33.0
+
-**Full Changelog**: https://github.com/kivikakk/comrak/compare/v0.32.0...v0.33.0
# [v0.32.0] - 17-12-2024
* rust-toolchain: remove by @charlottia in https://github.com/kivikakk/comrak/pull/493
-* Account for front matter when calculating by @SamWilsn in https://github.com/kivikakk/comrak/pull/494
+* Account for front matter when calculating `sourcepos` by @SamWilsn in https://github.com/kivikakk/comrak/pull/494
* callbacks: constrain to input lifetime by @liamwhite in https://github.com/kivikakk/comrak/pull/499
* Refactor open_new_blocks by @digitalmoksha in https://github.com/kivikakk/comrak/pull/505
* Refactors open_new_blocks by lifting out handlers by @digitalmoksha in https://github.com/kivikakk/comrak/pull/506
-* Make override by @SamWilsn in https://github.com/kivikakk/comrak/pull/500
+* Make `wikilinks_title_after_pipe` override `wikilinks_title_before_pipe` by @SamWilsn in https://github.com/kivikakk/comrak/pull/500
* Detect ending front matter delimiter at EOF by @kivikakk in https://github.com/kivikakk/comrak/pull/508
* Add Raw Node by @wakairo in https://github.com/kivikakk/comrak/pull/511