diff --git a/README.md b/README.md
index 1221b5c0c0..9f8c1ac53c 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
-[](https://slack.mindee.com) [](LICENSE)  [](https://github.com/mindee/doctr/pkgs/container/doctr) [](https://codecov.io/gh/mindee/doctr) [](https://www.codefactor.io/repository/github/mindee/doctr) [](https://app.codacy.com/gh/mindee/doctr?utm_source=github.com&utm_medium=referral&utm_content=mindee/doctr&utm_campaign=Badge_Grade) [](https://mindee.github.io/doctr) [](https://pypi.org/project/python-doctr/) [](https://huggingface.co/spaces/mindee/doctr) [](https://colab.research.google.com/github/mindee/notebooks/blob/main/doctr/quicktour.ipynb) [](https://gurubase.io/g/doctr)
+[](https://slack.mindee.com) [](LICENSE)  [](https://github.com/mindee/doctr/pkgs/container/doctr) [](https://codecov.io/gh/mindee/doctr) [](https://www.codefactor.io/repository/github/mindee/doctr) [](https://app.codacy.com/gh/mindee/doctr?utm_source=github.com&utm_medium=referral&utm_content=mindee/doctr&utm_campaign=Badge_Grade) [](https://mindee.github.io/doctr) [](https://pypi.org/project/python-doctr/) [](https://huggingface.co/spaces/mindee/doctr) [](https://colab.research.google.com/github/mindee/notebooks/blob/main/doctr/quicktour.ipynb) [](https://gurubase.io/g/doctr)
**Optical Character Recognition made seamless & accessible to anyone, powered by PyTorch**
diff --git a/api/pyproject.toml b/api/pyproject.toml
index d321644c31..3bdc360c58 100644
--- a/api/pyproject.toml
+++ b/api/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"
[tool.poetry]
name = "doctr-api"
-version = "1.0.1a0"
+version = "1.0.2a0"
description = "Backend template for your OCR API with docTR"
authors = ["Mindee "]
license = "Apache-2.0"
diff --git a/docs/build.sh b/docs/build.sh
index b3212fa0f7..ddacc2390b 100644
--- a/docs/build.sh
+++ b/docs/build.sh
@@ -34,5 +34,6 @@ git fetch --all --tags --unshallow
deploy_doc "" latest
deploy_doc "1c9ce92" v0.11.0
deploy_doc "97d4006" v0.12.0
-deploy_doc "7dabbe1" # v1.0.0 Latest stable release
+deploy_doc "7dabbe1" v1.0.0
+deploy_doc "6541a6e" # v1.0.1 Latest stable release
rm -rf _build _static _conf.py
diff --git a/docs/source/_static/js/custom.js b/docs/source/_static/js/custom.js
index 37a6fd4526..d34d3a52d5 100644
--- a/docs/source/_static/js/custom.js
+++ b/docs/source/_static/js/custom.js
@@ -3,11 +3,12 @@
// These two things need to be updated at each release for the version selector.
// Last stable version
-const stableVersion = "v1.0.0"
+const stableVersion = "v1.0.1"
// Dictionary doc folder to label. The last stable version should have an empty key.
const versionMapping = {
"latest": "latest",
- "": "v1.0.0 (stable)",
+ "": "v1.0.1 (stable)",
+ "v1.0.0": "v1.0.0",
"v0.12.0": "v0.12.0",
"v0.11.0": "v0.11.0",
}
diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst
index d2f66756be..cb314f1ba7 100644
--- a/docs/source/changelog.rst
+++ b/docs/source/changelog.rst
@@ -1,6 +1,10 @@
Changelog
=========
+v1.0.1 (2026-02-04)
+-------------------
+Release note: `v1.0.1 `_
+
v1.0.0 (2025-07-09)
-------------------
Release note: `v1.0.0 `_
diff --git a/setup.py b/setup.py
index 2b675901dc..8dd01a8203 100644
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@
from setuptools import setup
PKG_NAME = "python-doctr"
-VERSION = os.getenv("BUILD_VERSION", "1.0.1a0")
+VERSION = os.getenv("BUILD_VERSION", "1.0.2a0")
if __name__ == "__main__":