diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index d65c4db..11ce4cf 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -8,6 +8,16 @@ The format is based on `Keep a Changelog `
and this project adheres to `Semantic Versioning `_.
+[0.10.0] - 2024-01-21
+---------------------
+
+Added
+^^^^^
+
+* Parser,Django: Added support for geo.{intersects, distance, length} functions.
+* Python 3.11 coverage in test matrix.
+
+
[0.9.1] - 2023-11-15
--------------------
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 518a564..823e3a4 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -22,7 +22,7 @@
author = "Oliver Hofkens"
# The full version, including alpha/beta/rc tags
-release = "0.9.1"
+release = "0.10.0b1"
# -- General configuration ---------------------------------------------------
diff --git a/odata_query/__init__.py b/odata_query/__init__.py
index d69d16e..a7b87e5 100644
--- a/odata_query/__init__.py
+++ b/odata_query/__init__.py
@@ -1 +1 @@
-__version__ = "0.9.1"
+__version__ = "0.10.0b1"
diff --git a/pyproject.toml b/pyproject.toml
index 97a3ed3..aff5713 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "odata-query"
-version = "0.9.1"
+version = "0.10.0b1"
description = "An OData query parser and transpiler."
authors = ["Oliver Hofkens "]
readme = "README.rst"
diff --git a/setup.cfg b/setup.cfg
index cf77383..a265646 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 0.9.1
+current_version = 0.10.0b1
commit = True
tag = True
parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?:(?Pa|b|rc)(?P\d+))?
diff --git a/sonar-project.properties b/sonar-project.properties
index befc6fb..0873cb9 100644
--- a/sonar-project.properties
+++ b/sonar-project.properties
@@ -1,6 +1,6 @@
sonar.projectKey=gorillaco_odata-query
sonar.projectName=OData Query
-sonar.projectVersion=0.9.1
+sonar.projectVersion=0.10.0b1
sonar.sources=./odata_query
sonar.tests=./tests