diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3f6d9b4..5fc42bc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+
+# [2.8.0](https://github.com/elbywan/wretch/compare/2.7.1...2.8.0) (2023-12-30)
+
+
+### :factory: New feature(s)
+
+* addon.resolver can now be a function ([0bf9aa8](https://github.com/elbywan/wretch/commit/0bf9aa8)), closes [#212](https://github.com/elbywan/wretch/issues/212)
+
+
+
## [2.7.1](https://github.com/elbywan/wretch/compare/2.7.0...2.7.1) (2023-11-19)
diff --git a/README.md b/README.md
index a4055ce..7e3d5b9 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@
-##### Wretch 2.7 is now live 🎉 ! Please have a look at the [releases](https://github.com/elbywan/wretch/releases) and the [changelog](https://github.com/elbywan/wretch/blob/master/CHANGELOG.md) after each update for new features and breaking changes. If you want to try out the hot stuff, please look into the [dev](https://github.com/elbywan/wretch/tree/dev) branch.
+##### Wretch 2.8 is now live 🎉 ! Please have a look at the [releases](https://github.com/elbywan/wretch/releases) and the [changelog](https://github.com/elbywan/wretch/blob/master/CHANGELOG.md) after each update for new features and breaking changes. If you want to try out the hot stuff, please look into the [dev](https://github.com/elbywan/wretch/tree/dev) branch.
##### And if you like the library please consider becoming a [sponsor](https://github.com/sponsors/elbywan) ❤️.
diff --git a/docs/api/functions/addons_abort.default.html b/docs/api/functions/addons_abort.default.html
index 14d4e46..35730e3 100644
--- a/docs/api/functions/addons_abort.default.html
+++ b/docs/api/functions/addons_abort.default.html
@@ -5,4 +5,4 @@
polyfill.
import AbortAddon from "wretch/addons/abort"
const [c, w] = wretch("...")
.addon(AbortAddon())
.get()
.onAbort((_) => console.log("Aborted !"))
.controller();
w.text((_) => console.log("should never be called"));
c.abort();
// Or :
const controller = new AbortController();
wretch("...")
.addon(AbortAddon())
.signal(controller)
.get()
.onAbort((_) => console.log("Aborted !"))
.text((_) => console.log("should never be called"));
controller.abort();
-Generated using TypeDoc