diff --git a/README.md b/README.md
index a620ca748..eb00ae397 100644
--- a/README.md
+++ b/README.md
@@ -23,6 +23,7 @@ addon | version | maintainers | summary
--- | --- | --- | ---
[event_contact](event_contact/) | 16.0.1.0.0 | [![rafaelbn](https://github.com/rafaelbn.png?size=30px)](https://github.com/rafaelbn) [![edlopen](https://github.com/edlopen.png?size=30px)](https://github.com/edlopen) | Add contacts to event and event type
[event_mail](event_mail/) | 16.0.1.1.0 | | Mail settings in events
+[event_project](event_project/) | 16.0.1.0.1 | [![Shide](https://github.com/Shide.png?size=30px)](https://github.com/Shide) [![rafaelbn](https://github.com/rafaelbn.png?size=30px)](https://github.com/rafaelbn) | Event project
[event_registration_mass_mailing](event_registration_mass_mailing/) | 16.0.1.0.1 | [![rafaelbn](https://github.com/rafaelbn.png?size=30px)](https://github.com/rafaelbn) [![edlopen](https://github.com/edlopen.png?size=30px)](https://github.com/edlopen) | Put event registrations emails into mailing lists
[event_registration_multi_qty](event_registration_multi_qty/) | 16.0.1.0.0 | | Allow registration grouped by quantities
[event_registration_partner_unique](event_registration_partner_unique/) | 16.0.1.0.0 | | Enforces 1 registration per partner and event
diff --git a/event_project/README.rst b/event_project/README.rst
index 260ad5e5a..7edf1ded8 100644
--- a/event_project/README.rst
+++ b/event_project/README.rst
@@ -7,7 +7,7 @@ Event project
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- !! source digest: sha256:7298f0bd0acc0ba6d24b83ebf37883bbde4b42aecb03e28b343c1d6b286ac17f
+ !! source digest: sha256:43b55b332c7b2fa54fbf04e01e06798cf09891bb789deac6c53f9c35f247dde7
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
diff --git a/event_project/__manifest__.py b/event_project/__manifest__.py
index 8ce0a3982..f9db7532c 100644
--- a/event_project/__manifest__.py
+++ b/event_project/__manifest__.py
@@ -6,7 +6,7 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Event project",
- "version": "16.0.1.0.0",
+ "version": "16.0.1.0.1",
"author": "Tecnativa, Moduon, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/event",
"license": "AGPL-3",
diff --git a/event_project/static/description/index.html b/event_project/static/description/index.html
index b81f6fbaf..20aff7da2 100644
--- a/event_project/static/description/index.html
+++ b/event_project/static/description/index.html
@@ -8,11 +8,10 @@
/*
:Author: David Goodger (goodger@python.org)
-:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
+:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
-Despite the name, some widely supported CSS2 features are used.
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
customize this style sheet.
@@ -275,7 +274,7 @@
margin-left: 2em ;
margin-right: 2em }
-pre.code .ln { color: gray; } /* line numbers */
+pre.code .ln { color: grey; } /* line numbers */
pre.code, code { background-color: #eeeeee }
pre.code .comment, code .comment { color: #5C6576 }
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
@@ -301,7 +300,7 @@
span.pre {
white-space: pre }
-span.problematic, pre.problematic {
+span.problematic {
color: red }
span.section-subtitle {
@@ -367,7 +366,7 @@
This module allows you to assign a project to an event. This project
@@ -441,9 +440,7 @@
This module is maintained by the OCA.
-
-
-
+
OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt
index b8530654a..109bedb65 100644
--- a/setup/_metapackage/VERSION.txt
+++ b/setup/_metapackage/VERSION.txt
@@ -1 +1 @@
-16.0.20240604.0
\ No newline at end of file
+16.0.20240626.0
\ No newline at end of file
diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py
index b7c380ec5..fe7011eb7 100644
--- a/setup/_metapackage/setup.py
+++ b/setup/_metapackage/setup.py
@@ -10,6 +10,7 @@
install_requires=[
'odoo-addon-event_contact>=16.0dev,<16.1dev',
'odoo-addon-event_mail>=16.0dev,<16.1dev',
+ 'odoo-addon-event_project>=16.0dev,<16.1dev',
'odoo-addon-event_registration_mass_mailing>=16.0dev,<16.1dev',
'odoo-addon-event_registration_multi_qty>=16.0dev,<16.1dev',
'odoo-addon-event_registration_partner_unique>=16.0dev,<16.1dev',