diff --git a/ChangeLog b/ChangeLog
index f707c76d7e5f6e2ce4be197e4df5f9c1b76de183..9617a4ed23a2f6ae36d31b2e1d0ede3c018d3309 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-09-26 Enol Fernández <enolfc _AT_ ifca.unican.es> - 1.5.2
+	* Development migrated to github
+	* Fixes for issues #1, #2, #6, #8 & #9
+
 2012-11-08 Enol Fernández  <enolfc _AT_ ifca.unican.es> - 1.5.0
 	* New copy_from_node method (#5)
 
diff --git a/mpi-start.spec.in b/mpi-start.spec.in
index 76cfaf52d967e01a79003f006662d1869592070c..d8544bc8c35b360762e503474553ed56aa41f30e 100644
--- a/mpi-start.spec.in
+++ b/mpi-start.spec.in
@@ -51,11 +51,13 @@ rm -rf $RPM_BUILD_ROOT
 %doc docs/AUTHORS docs/COPYING docs/LICENSE README ChangeLog
 
 %changelog
-* Wed Aug 28 2013 Enol Fernandez <enolfc _AT_ ifca.unican.es> - 1.5.2-%{release}
+* Thu Sep 26 2013 Enol Fernandez <enolfc _AT_ ifca.unican.es> - 1.5.2-%{release}
 - Migrated to github.
 - Fix issue #1 (OSC mpiexec with mpich configuration)
 - Fix issue #2 (ssh copy fails if hostname command returns hostname with domain)
 - Fix issue #6 (Default mpi configuration should be detected by the runtime)
+- Fix issue #9 (mpiexec copy method activated when using hydra)
+- New feature #8 (Support host list scheduler)
 
 * Wed Oct 31 2012 Enol Fernandez <enolfc _AT_ ifca.unican.es> - 1.5.1-1%{?dist}
 - Improved packaging.
diff --git a/tests/test_omp.sh b/tests/test_omp.sh
index 2d34d593d7c429c8a48f6b95f83eea3e360c9d5e..eb22a18e027b3ab7b46ee4e1b991015f044acc95 100755
--- a/tests/test_omp.sh
+++ b/tests/test_omp.sh
@@ -65,7 +65,7 @@ setUp () {
 
 testPreCompiledOMP () {
     # force the number of threads? 
-    OUTPUT=`$I2G_MPI_START -d MPI_USE_OMP=1 -t dummy -d MPI_DUMMY_SCH_SLOTS=2 -e /dev/null $OMP_BIN`
+    OUTPUT=`$I2G_MPI_START -d MPI_USE_OMP=1 -t dummy -d MPI_START_DUMMY_SCH_SLOTS=2 -e /dev/null $OMP_BIN`
     st=$?
     assertEquals 0 $st
     assertEquals "Number of threads = 2" "$OUTPUT"
@@ -84,7 +84,7 @@ post_run_hook () {
 }
 EOF
     # force the number of threads? 
-    OUTPUT=`$I2G_MPI_START -d MPI_USE_OMP=1 -t dummy -d MPI_DUMMY_SCH_SLOTS=2 \
+    OUTPUT=`$I2G_MPI_START -d MPI_USE_OMP=1 -t dummy -d MPI_START_DUMMY_SCH_SLOTS=2 \
             -pre $myhook -post $myhook -e /dev/null`
     st=$?
     assertEquals 0 $st