diff --git a/README.md b/README.md
index 217446703295536e8f217445411491d94bb5fd80..d85d0e81af1944af384ab4ee3859fd3034bf6384 100644
--- a/README.md
+++ b/README.md
@@ -68,20 +68,18 @@ I.e. Any file written after v2.2.1 should be readable without problems with any
 
 A major change at 2.3 will prevent from backwards compatibility, since class names have been reviewed.
 
-## Main authors and contributing institutions
-
-* **Javier Galan, Igor G. Irastorza, Gloria Luzon** - *University of Zaragoza (Spain)*
-* **Ke Han, Kaixiang Ni** - *Shanghai Jiao Tong University (China)*
-* **Yann Bedfer, Damien Neyret** - *CEA Saclay (France)*
-* **Eduardo Picatoste, Cristian Cogollos** - *Universitat de Barcelona (Spain)*
-
-See also the list of [contributors]() who participated in this project.
-
 ## Publications
 
-- PandaX-III: Searching for neutrinoless double beta decay with high pressure 136Xe gas time projection chambers. [X. Chen et al., Science China Physics, Mechanics & Astronomy 60, 061011 (2017)](https://doi.org/10.1007/s11433-017-9028-0) [arXiv:1610.08883](https://arxiv.org/abs/1610.08883).
+- AlphaCAMM, a Micromegas-based camera for high-sensitivity screening of alpha surface contamination, [K. Altenmüller et al., Journal of Instrumentation, Volume 17, August 2022](https://doi.org/10.1088/1748-0221/17/08/P08035), [arXiv:2201.01859](https://doi.org/10.48550/arXiv.2201.01859).
+- REST-for-Physics, a ROOT-based framework for event oriented data analysis and combined Monte Carlo response, [K. Altenmüller, S. Cebrián, T. Dafni et al., , Computer Physics Communications, 108281, April 2022](https://doi.org/10.1016/j.cpc.2021.108281).
+- Topological background discrimination in the PandaX-III neutrinoless double beta decay experiment, [J Galan et al 2020 J. Phys. G: Nucl. Part. Phys. 47 045108](https://doi.org/10.1088/1361-6471/ab4dbe), [arxiv:1903.03979](https://doi.org/10.48550/arXiv.1903.03979).
 - Background assessment for the TREX Dark Matter experiment. [Castel, J., Cebrián, S., Coarasa, I. et al. Eur. Phys. J. C 79, 782 (2019)](https://doi.org/10.1140/epjc/s10052-019-7282-6). [arXiv:1812.04519](https://arxiv.org/abs/1812.04519).
-- Topological background discrimination in the PandaX-III neutrinoless double beta decay experiment. [J Galan et al 2020 J. Phys. G: Nucl. Part. Phys. 47 045108](https://doi.org/10.1088/1361-6471/ab4dbe). [arxiv:1903.03979]( https://arxiv.org/abs/1903.03979).
+- PandaX-III: Searching for neutrinoless double beta decay with high pressure 136Xe gas time projection chambers. [X. Chen et al., Science China Physics, Mechanics & Astronomy 60, 061011 (2017)](https://doi.org/10.1007/s11433-017-9028-0) [arXiv:1610.08883](https://arxiv.org/abs/1610.08883).
+
+## Presentations
+- REST-for-Physics, Luis Obis, [2022-May, ROOT Users Workshop, FermiLab](https://indico.fnal.gov/event/23628/contributions/240755/).
+- REST v2.0 : A data analysis and simulation framework for micro-patterned readout detectors., Javier Galan, [2016-Dec, 8th Symposium on Large TPCs for low-energy rare event detection, Paris](https://indico.cern.ch/event/473362/contributions/2334838/).
+
 
 ## License
 
diff --git a/projects/iaxo b/projects/iaxo
index ec08112e290caa17c1beeb1cbb480c8001c2271c..7220b93f49b6f4d2125d0f74e600021bdebe70cb 160000
--- a/projects/iaxo
+++ b/projects/iaxo
@@ -1 +1 @@
-Subproject commit ec08112e290caa17c1beeb1cbb480c8001c2271c
+Subproject commit 7220b93f49b6f4d2125d0f74e600021bdebe70cb
diff --git a/scripts/installation/installGeant4.sh b/scripts/installation/installGeant4.sh
index 67bdf414fa9b7cb2f835d60d2a8566654574439e..3aea02daae4971ba3c8755d46674ae5965ce13c8 100755
--- a/scripts/installation/installGeant4.sh
+++ b/scripts/installation/installGeant4.sh
@@ -1,8 +1,8 @@
 #!/bin/bash
 
-if [ $(geant4-config --version | grep "10.4.2") ];then
+if [ $(geant4-config --version | grep "11.0.3") ];then
 
-echo Geant4 of version 10.4.2 has already been installed
+echo Geant4 of version 11.0.3 has already been installed
 echo prefix:
 echo $(geant4-config --prefix)
 echo cflags:
@@ -13,7 +13,7 @@ else
 set -e
 WP=$PWD
 
-G4_ROOT=geant4.10.04.p02
+G4_ROOT=geant4-v11.0.3
 G4_FILE=$G4_ROOT.tar.gz
 
 echo installing: $G4_ROOT
@@ -31,7 +31,7 @@ tar xvf $G4_FILE
 
 mkdir -p $G4_ROOT-build
 cd $G4_ROOT-build
-cmake ../$G4_ROOT -DGEANT4_USE_GDML=ON -DGEANT4_USE_QT=OFF -DCMAKE_INSTALL_PREFIX=$HOME/apps/$G4_ROOT-install -DGEANT4_INSTALL_DATA=ON -DGEANT4_INSTALL_DATA_TIMEOUT=7200
+cmake ../$G4_ROOT -DGEANT4_USE_GDML=ON -DGEANT4_USE_QT=OFF -DCMAKE_INSTALL_PREFIX=$HOME/apps/$G4_ROOT-install -DGEANT4_INSTALL_DATA=ON -DGEANT4_INSTALL_DATA_TIMEOUT=7200 -DCMAKE_CXX_STANDARD=17
 make -j30
 make install
 cd $WP
diff --git a/source/framework/core/inc/TRestVersion.h b/source/framework/core/inc/TRestVersion.h
index 903a4b84b408dfe08bfda717765f73e6324a27cc..62f36c41e32ae4d866b6a281e6a56751645b8230 100644
--- a/source/framework/core/inc/TRestVersion.h
+++ b/source/framework/core/inc/TRestVersion.h
@@ -11,11 +11,11 @@
                                                                  * #endif
                                                                  *
                                                                  */
-#define REST_RELEASE "2.3.12"
-#define REST_RELEASE_DATE "lun abr 25"
-#define REST_RELEASE_TIME "13:50:03 CEST 2022"
-#define REST_GIT_COMMIT "8a33774a"
-#define REST_VERSION_CODE 131852
+#define REST_RELEASE "2.3.13"
+#define REST_RELEASE_DATE "Thu 29 Sep"
+#define REST_RELEASE_TIME "2022 09:59:23 PM CEST"
+#define REST_GIT_COMMIT "46855729"
+#define REST_VERSION_CODE 131853
 #define REST_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
 #define REST_SCHEMA_EVOLUTION "ON"
 #endif
diff --git a/source/libraries/connectors b/source/libraries/connectors
index de207df10a82093c23e90c1d30baa96282a06aee..f4b64cffe19d7d08a891d69d92858d865150999e 160000
--- a/source/libraries/connectors
+++ b/source/libraries/connectors
@@ -1 +1 @@
-Subproject commit de207df10a82093c23e90c1d30baa96282a06aee
+Subproject commit f4b64cffe19d7d08a891d69d92858d865150999e
diff --git a/source/libraries/detector b/source/libraries/detector
index 54ef8f069b2936c0d84c99c0931aad1ed4d8c71d..6fbe9fc9338b85739c900f0d095347fd5609b217 160000
--- a/source/libraries/detector
+++ b/source/libraries/detector
@@ -1 +1 @@
-Subproject commit 54ef8f069b2936c0d84c99c0931aad1ed4d8c71d
+Subproject commit 6fbe9fc9338b85739c900f0d095347fd5609b217
diff --git a/source/libraries/geant4 b/source/libraries/geant4
index 9397cd24477343e768d4bb8d85c8316066a8c2e8..9e072ffb1f8817eb38bd9e7eee9610b7e933e55a 160000
--- a/source/libraries/geant4
+++ b/source/libraries/geant4
@@ -1 +1 @@
-Subproject commit 9397cd24477343e768d4bb8d85c8316066a8c2e8
+Subproject commit 9e072ffb1f8817eb38bd9e7eee9610b7e933e55a
diff --git a/source/libraries/raw b/source/libraries/raw
index b15d1ccd0d435f4f94efe4e80d2540fb6322bd76..b33dc9a5551d16a759d51ef81686a10fb5e7c2a0 160000
--- a/source/libraries/raw
+++ b/source/libraries/raw
@@ -1 +1 @@
-Subproject commit b15d1ccd0d435f4f94efe4e80d2540fb6322bd76
+Subproject commit b33dc9a5551d16a759d51ef81686a10fb5e7c2a0
diff --git a/source/libraries/track b/source/libraries/track
index 9cf0fe325eb3bfb1a1ad38ce8909b81e51fba5b4..04e0678e8e1113f20337a8d02a5509c346e847a1 160000
--- a/source/libraries/track
+++ b/source/libraries/track
@@ -1 +1 @@
-Subproject commit 9cf0fe325eb3bfb1a1ad38ce8909b81e51fba5b4
+Subproject commit 04e0678e8e1113f20337a8d02a5509c346e847a1
diff --git a/source/packages/restG4 b/source/packages/restG4
index cc7486ca3e6961a44927fc943375cb08633e2d49..1b31d602642419bd91567adfade68d753a61930d 160000
--- a/source/packages/restG4
+++ b/source/packages/restG4
@@ -1 +1 @@
-Subproject commit cc7486ca3e6961a44927fc943375cb08633e2d49
+Subproject commit 1b31d602642419bd91567adfade68d753a61930d