diff --git a/.changeset/large-beds-pump.md b/.changeset/large-beds-pump.md
deleted file mode 100644
index 6eef7d2a..00000000
--- a/.changeset/large-beds-pump.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'markdown-to-jsx': patch
----
-
-Simplify handling of fallback scenario if a link reference is missing its corresponding footnote.
diff --git a/.changeset/wicked-radios-tap.md b/.changeset/wicked-radios-tap.md
deleted file mode 100644
index 5d501f68..00000000
--- a/.changeset/wicked-radios-tap.md
+++ /dev/null
@@ -1,26 +0,0 @@
----
-'markdown-to-jsx': minor
----
-
-Add `options.disableAutoLink` to customize bare URL handling behavior.
-
-By default, bare URLs in the markdown document will be converted into an anchor tag. This behavior can be disabled if desired.
-
-```jsx
-
- The URL https://quantizor.dev will not be rendered as an anchor tag.
-
-
-// or
-
-compiler(
- 'The URL https://quantizor.dev will not be rendered as an anchor tag.',
- { disableAutoLink: true }
-)
-
-// renders:
-
-
- The URL https://quantizor.dev will not be rendered as an anchor tag.
-
-```
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3ad7a6ca..7427d1e3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,36 @@
# markdown-to-jsx
+## 7.6.0
+
+### Minor Changes
+
+- 2281a4d: Add `options.disableAutoLink` to customize bare URL handling behavior.
+
+ By default, bare URLs in the markdown document will be converted into an anchor tag. This behavior can be disabled if desired.
+
+ ```jsx
+
+ The URL https://quantizor.dev will not be rendered as an anchor tag.
+
+
+ // or
+
+ compiler(
+ 'The URL https://quantizor.dev will not be rendered as an anchor tag.',
+ { disableAutoLink: true }
+ )
+
+ // renders:
+
+
+ The URL https://quantizor.dev will not be rendered as an anchor tag.
+
+ ```
+
+### Patch Changes
+
+- fb3d716: Simplify handling of fallback scenario if a link reference is missing its corresponding footnote.
+
## 7.5.1
### Patch Changes
diff --git a/package.json b/package.json
index e4db9e14..3c25bd99 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,7 @@
"description": "Convert markdown to JSX with ease for React and React-like projects. Super lightweight and highly configurable.",
"homepage": "https://markdown-to-jsx.quantizor.dev",
"license": "MIT",
- "version": "7.5.1",
+ "version": "7.6.0",
"publishConfig": {
"access": "public"
},