diff --git a/docs/en/changelog.mdx b/docs/en/changelog.mdx
index 106d03e28..f43a80b94 100644
--- a/docs/en/changelog.mdx
+++ b/docs/en/changelog.mdx
@@ -4,6 +4,56 @@ description: "Product updates, improvements, and bug fixes for CrewAI"
icon: "clock"
mode: "wide"
---
+
+ ## v1.10.1a1
+
+ [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.10.1a1)
+
+ ## What's Changed
+
+ ### Features
+ - Implement asynchronous invocation support in step callback methods
+ - Implement lazy loading for heavy dependencies in Memory module
+
+ ### Documentation
+ - Update changelog and version for v1.10.0
+
+ ### Refactoring
+ - Refactor step callback methods to support asynchronous invocation
+ - Refactor to implement lazy loading for heavy dependencies in Memory module
+
+ ### Bug Fixes
+ - Fix branch for release notes
+
+ ## Contributors
+
+ @greysonlalonde, @joaomdmoura
+
+
+
+
+ ## v1.10.1a1
+
+ [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.10.1a1)
+
+ ## What's Changed
+
+ ### Refactoring
+ - Refactor step callback methods to support asynchronous invocation
+ - Implement lazy loading for heavy dependencies in Memory module
+
+ ### Documentation
+ - Update changelog and version for v1.10.0
+
+ ### Bug Fixes
+ - Make branch for release notes
+
+ ## Contributors
+
+ @greysonlalonde, @joaomdmoura
+
+
+
## v1.10.0
diff --git a/docs/ko/changelog.mdx b/docs/ko/changelog.mdx
index 4c4f85cd6..58f800b42 100644
--- a/docs/ko/changelog.mdx
+++ b/docs/ko/changelog.mdx
@@ -4,6 +4,56 @@ description: "CrewAI의 제품 업데이트, 개선 사항 및 버그 수정"
icon: "clock"
mode: "wide"
---
+
+ ## v1.10.1a1
+
+ [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.10.1a1)
+
+ ## 변경 사항
+
+ ### 기능
+ - 단계 콜백 메서드에서 비동기 호출 지원 구현
+ - 메모리 모듈의 무거운 의존성에 대한 지연 로딩 구현
+
+ ### 문서
+ - v1.10.0에 대한 변경 로그 및 버전 업데이트
+
+ ### 리팩토링
+ - 비동기 호출을 지원하기 위해 단계 콜백 메서드 리팩토링
+ - 메모리 모듈의 무거운 의존성에 대한 지연 로딩을 구현하기 위해 리팩토링
+
+ ### 버그 수정
+ - 릴리스 노트의 분기 수정
+
+ ## 기여자
+
+ @greysonlalonde, @joaomdmoura
+
+
+
+
+ ## v1.10.1a1
+
+ [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.10.1a1)
+
+ ## 변경 사항
+
+ ### 리팩토링
+ - 비동기 호출을 지원하기 위해 단계 콜백 메서드 리팩토링
+ - 메모리 모듈의 무거운 의존성에 대해 지연 로딩 구현
+
+ ### 문서화
+ - v1.10.0에 대한 변경 로그 및 버전 업데이트
+
+ ### 버그 수정
+ - 릴리스 노트를 위한 브랜치 생성
+
+ ## 기여자
+
+ @greysonlalonde, @joaomdmoura
+
+
+
## v1.10.0
diff --git a/docs/pt-BR/changelog.mdx b/docs/pt-BR/changelog.mdx
index 5fa7ab43f..7014d82be 100644
--- a/docs/pt-BR/changelog.mdx
+++ b/docs/pt-BR/changelog.mdx
@@ -4,6 +4,56 @@ description: "Atualizações de produto, melhorias e correções do CrewAI"
icon: "clock"
mode: "wide"
---
+
+ ## v1.10.1a1
+
+ [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.10.1a1)
+
+ ## O que Mudou
+
+ ### Funcionalidades
+ - Implementar suporte a invocação assíncrona em métodos de callback de etapas
+ - Implementar carregamento sob demanda para dependências pesadas no módulo de Memória
+
+ ### Documentação
+ - Atualizar changelog e versão para v1.10.0
+
+ ### Refatoração
+ - Refatorar métodos de callback de etapas para suportar invocação assíncrona
+ - Refatorar para implementar carregamento sob demanda para dependências pesadas no módulo de Memória
+
+ ### Correções de Bugs
+ - Corrigir branch para notas de lançamento
+
+ ## Contribuidores
+
+ @greysonlalonde, @joaomdmoura
+
+
+
+
+ ## v1.10.1a1
+
+ [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.10.1a1)
+
+ ## O que Mudou
+
+ ### Refatoração
+ - Refatorar métodos de callback de etapas para suportar invocação assíncrona
+ - Implementar carregamento sob demanda para dependências pesadas no módulo de Memória
+
+ ### Documentação
+ - Atualizar changelog e versão para v1.10.0
+
+ ### Correções de Bugs
+ - Criar branch para notas de lançamento
+
+ ## Contribuidores
+
+ @greysonlalonde, @joaomdmoura
+
+
+
## v1.10.0
diff --git a/lib/crewai-files/src/crewai_files/__init__.py b/lib/crewai-files/src/crewai_files/__init__.py
index 24f34e510..ebfd02a0c 100644
--- a/lib/crewai-files/src/crewai_files/__init__.py
+++ b/lib/crewai-files/src/crewai_files/__init__.py
@@ -152,4 +152,4 @@ __all__ = [
"wrap_file_source",
]
-__version__ = "1.10.1b1"
+__version__ = "1.10.1a1"
diff --git a/lib/crewai-tools/pyproject.toml b/lib/crewai-tools/pyproject.toml
index caf460410..dcb56a7f5 100644
--- a/lib/crewai-tools/pyproject.toml
+++ b/lib/crewai-tools/pyproject.toml
@@ -11,7 +11,7 @@ dependencies = [
"pytube~=15.0.0",
"requests~=2.32.5",
"docker~=7.1.0",
- "crewai==1.10.1b1",
+ "crewai==1.10.1a1",
"tiktoken~=0.8.0",
"beautifulsoup4~=4.13.4",
"python-docx~=1.2.0",
diff --git a/lib/crewai-tools/src/crewai_tools/__init__.py b/lib/crewai-tools/src/crewai_tools/__init__.py
index a3c978230..373f8b2bb 100644
--- a/lib/crewai-tools/src/crewai_tools/__init__.py
+++ b/lib/crewai-tools/src/crewai_tools/__init__.py
@@ -291,4 +291,4 @@ __all__ = [
"ZapierActionTools",
]
-__version__ = "1.10.1b1"
+__version__ = "1.10.1a1"
diff --git a/lib/crewai/pyproject.toml b/lib/crewai/pyproject.toml
index 0401ef193..69e0cdb5f 100644
--- a/lib/crewai/pyproject.toml
+++ b/lib/crewai/pyproject.toml
@@ -53,7 +53,7 @@ Repository = "https://github.com/crewAIInc/crewAI"
[project.optional-dependencies]
tools = [
- "crewai-tools==1.10.1b1",
+ "crewai-tools==1.10.1a1",
]
embeddings = [
"tiktoken~=0.8.0"
diff --git a/lib/crewai/src/crewai/__init__.py b/lib/crewai/src/crewai/__init__.py
index da79887a6..43bfc8de2 100644
--- a/lib/crewai/src/crewai/__init__.py
+++ b/lib/crewai/src/crewai/__init__.py
@@ -40,7 +40,7 @@ def _suppress_pydantic_deprecation_warnings() -> None:
_suppress_pydantic_deprecation_warnings()
-__version__ = "1.10.1b1"
+__version__ = "1.10.1a1"
_telemetry_submitted = False
diff --git a/lib/crewai/src/crewai/cli/templates/crew/pyproject.toml b/lib/crewai/src/crewai/cli/templates/crew/pyproject.toml
index d06e60cb3..c84c6715c 100644
--- a/lib/crewai/src/crewai/cli/templates/crew/pyproject.toml
+++ b/lib/crewai/src/crewai/cli/templates/crew/pyproject.toml
@@ -5,7 +5,7 @@ description = "{{name}} using crewAI"
authors = [{ name = "Your Name", email = "you@example.com" }]
requires-python = ">=3.10,<3.14"
dependencies = [
- "crewai[tools]==1.10.1b1"
+ "crewai[tools]==1.10.1a1"
]
[project.scripts]
diff --git a/lib/crewai/src/crewai/cli/templates/flow/pyproject.toml b/lib/crewai/src/crewai/cli/templates/flow/pyproject.toml
index 2b1259e79..47b761496 100644
--- a/lib/crewai/src/crewai/cli/templates/flow/pyproject.toml
+++ b/lib/crewai/src/crewai/cli/templates/flow/pyproject.toml
@@ -5,7 +5,7 @@ description = "{{name}} using crewAI"
authors = [{ name = "Your Name", email = "you@example.com" }]
requires-python = ">=3.10,<3.14"
dependencies = [
- "crewai[tools]==1.10.1b1"
+ "crewai[tools]==1.10.1a1"
]
[project.scripts]
diff --git a/lib/crewai/src/crewai/cli/templates/tool/pyproject.toml b/lib/crewai/src/crewai/cli/templates/tool/pyproject.toml
index 8f8194e7b..beae2c7c7 100644
--- a/lib/crewai/src/crewai/cli/templates/tool/pyproject.toml
+++ b/lib/crewai/src/crewai/cli/templates/tool/pyproject.toml
@@ -5,7 +5,7 @@ description = "Power up your crews with {{folder_name}}"
readme = "README.md"
requires-python = ">=3.10,<3.14"
dependencies = [
- "crewai[tools]==1.10.1b1"
+ "crewai[tools]==1.10.1a1"
]
[tool.crewai]
diff --git a/lib/devtools/src/crewai_devtools/__init__.py b/lib/devtools/src/crewai_devtools/__init__.py
index cc024e7b0..a8faaf7c0 100644
--- a/lib/devtools/src/crewai_devtools/__init__.py
+++ b/lib/devtools/src/crewai_devtools/__init__.py
@@ -1,3 +1,3 @@
"""CrewAI development tools."""
-__version__ = "1.10.1b1"
+__version__ = "1.10.1a1"