diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 7209a0fbf6f76bfa19979236c01213f5a15b3f20..07b3ee148d71473e3325713c889925982e6c3fae 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -22,7 +22,7 @@ on:
 env:
   CACHE_VERSION: 1
   PIP_CACHE_VERSION: 1
-  HA_SHORT_VERSION: 2022.10
+  HA_SHORT_VERSION: 2022.11
   # Pin latest Python patch versions to avoid issues
   # with runners using different versions.
   DEFAULT_PYTHON: 3.9.14
diff --git a/homeassistant/const.py b/homeassistant/const.py
index 27d172265ce408c0c95f5631f2317dc531d138bb..330f5399bc2fc96c111cefcf078587cc4bf4aa11 100644
--- a/homeassistant/const.py
+++ b/homeassistant/const.py
@@ -6,7 +6,7 @@ from typing import Final
 from .backports.enum import StrEnum
 
 MAJOR_VERSION: Final = 2022
-MINOR_VERSION: Final = 10
+MINOR_VERSION: Final = 11
 PATCH_VERSION: Final = "0.dev0"
 __short_version__: Final = f"{MAJOR_VERSION}.{MINOR_VERSION}"
 __version__: Final = f"{__short_version__}.{PATCH_VERSION}"
diff --git a/pyproject.toml b/pyproject.toml
index c76b015c84a34bde8813240fde2fd5c14b5fafb0..7838e3f750374174b5647efa78ca47baceff22b8 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
 
 [project]
 name        = "homeassistant"
-version     = "2022.10.0.dev0"
+version     = "2022.11.0.dev0"
 license     = {text = "Apache-2.0"}
 description = "Open-source home automation platform running on Python 3."
 readme      = "README.rst"