diff --git a/README.md b/README.md
index 3b6ed03b606dc9bf2463da64ce39972aece3600c..76956d71e2c8601de8ab73476f746a84a9408c76 100644
--- a/README.md
+++ b/README.md
@@ -13,6 +13,8 @@
 
 Semantic Router is a superfast decision-making layer for your LLMs and agents. Rather than waiting for slow LLM generations to make tool-use decisions, we use the magic of semantic vector space to make those decisions — _routing_ our requests using _semantic_ meaning.
 
+#### [Read the Docs](https://docs.aurelio.ai/semantic-router/index.html)
+
 ---
 
 ## Quickstart
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 2184b826696d7cd6052de3dc315b711317a2abb8..a0d09c94b28e24d6c4ceed2755010754f60953a3 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -15,7 +15,7 @@ sys.path.insert(0, os.path.abspath("../.."))  # Source code dir relative to this
 project = "Semantic Router"
 copyright = "2024, Aurelio AI"
 author = "Aurelio AI"
-release = "0.0.65"
+release = "0.0.66"
 
 # -- General configuration ---------------------------------------------------
 # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
diff --git a/pyproject.toml b/pyproject.toml
index 8576a4a987b5971cdbbbc9ca955b81a163adfb4d..97d92edf56aafcee734263fcc3216c64a26f8dd5 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,17 +1,8 @@
 [tool.poetry]
 name = "semantic-router"
-version = "0.0.65"
+version = "0.0.66"
 description = "Super fast semantic router for AI decision making"
-authors = [
-    "James Briggs <james@aurelio.ai>",
-    "Siraj Aizlewood <siraj@aurelio.ai>",
-    "Simonas Jakubonis <simonas@aurelio.ai>",
-    "Luca Mannini <luca@aurelio.ai>",
-    "Bogdan Buduroiu <bogdan@aurelio.ai>",
-    "Ismail Ashraq <ashraq@aurelio.ai>",
-    "Daniel Griffin <daniel@aurelio.ai>",
-    "Tolga Arslan <tolga@aurelio.ai>"
-]
+authors = ["Aurelio AI <hello@aurelio.ai>"]
 readme = "README.md"
 packages = [{include = "semantic_router"}]
 license = "MIT"
diff --git a/semantic_router/__init__.py b/semantic_router/__init__.py
index 6bf6b1c9634f206a4ad965b5f72308e1bdd6acd0..b0b67e19185a433896eaf1242ef9e94a5a6a9f9e 100644
--- a/semantic_router/__init__.py
+++ b/semantic_router/__init__.py
@@ -4,4 +4,4 @@ from semantic_router.route import Route
 
 __all__ = ["RouteLayer", "HybridRouteLayer", "Route", "LayerConfig"]
 
-__version__ = "0.0.65"
+__version__ = "0.0.66"