diff --git a/DESCRIPTION b/DESCRIPTION
index 55e2bf39f59fc805fa988c6d946fdff91071a6d4..4741ff14cc830fc269a54a57fc2c413a42c0ea0a 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,7 +1,7 @@
 Package: airGR
 Type: Package
 Title: Suite of GR Hydrological Models for Precipitation-Runoff Modelling
-Version: 1.0.5.8
+Version: 1.0.5.10
 Date: 2017-01-20
 Authors@R: c(
   person("Laurent", "Coron", role = c("aut", "trl")),
diff --git a/NEWS b/NEWS
index 9185f2095e869bd750a33ce2616326184ce919f0..236868df2ff2b302dca33aaa26765350404a0f49 100644
--- a/NEWS
+++ b/NEWS
@@ -2,7 +2,7 @@
 RELEASE HISTORY OF THE airGR PACKAGE
 
 
-#### 1.0.5.6 RELEASE NOTES ###########################
+#### 1.0.5.10 RELEASE NOTES ###########################
 
 - Bug fixed in DataAltiExtrapolation_Valery(). The elevation gradients for air temperature returned by CreateInputsModel() are improved.
 
@@ -13,7 +13,7 @@ RELEASE HISTORY OF THE airGR PACKAGE
 
 #### 1.0.4 RELEASE NOTES ###########################
 
-- RunModel_CemaNeigeGR4J, RunModel_CemaNeigeGR5J() and RunModel_CemaNeigeGR6J() now return air temperature for each elevation layer. 
+- RunModel_CemaNeige, RunModel_CemaNeigeGR4J, RunModel_CemaNeigeGR5J() and RunModel_CemaNeigeGR6J() now return air temperature for each elevation layer. 
 
 - S3 plot method defined for OutputsModel objects. It means that the plot_OutputsModel() function is deprecated and his use has been replaced by the use of plot.OutputsModel() or plot().
 
diff --git a/R/RunModel_CemaNeige.R b/R/RunModel_CemaNeige.R
index f3f9524789d0b6e1d23b3ef5723845c6810abd68..24245d9fe6a7271b936f6a8de9364df56d8101a8 100644
--- a/R/RunModel_CemaNeige.R
+++ b/R/RunModel_CemaNeige.R
@@ -1,7 +1,7 @@
 RunModel_CemaNeige <- function(InputsModel,RunOptions,Param){
 
     NParam <- 2;
-    FortranOutputsCemaNeige <- c("Pliq","Psol","SnowPack","ThermalState","Gratio","PotMelt","Melt","PliqAndMelt");
+    FortranOutputsCemaNeige <- c("Pliq","Psol","SnowPack","ThermalState","Gratio","PotMelt","Melt","PliqAndMelt", "Temp");
 
     ##Arguments_check
       if(inherits(InputsModel,"InputsModel")==FALSE){ stop("InputsModel must be of class 'InputsModel' \n"); return(NULL); }  
diff --git a/man/RunModel_CemaNeige.Rd b/man/RunModel_CemaNeige.Rd
index fa72567fd8878da70f36addef78ab59363ca63de..8cba0b94a10ce3d525c14a243fd384215248670a 100644
--- a/man/RunModel_CemaNeige.Rd
+++ b/man/RunModel_CemaNeige.Rd
@@ -29,6 +29,7 @@ CemaNeige X2 \tab degree-day melt coefficient [mm/°C/d]                       \
          \emph{$CemaNeigeLayers[[iLayer]]$PotMelt      }   \tab [numeric] series of potential snow melt [mm]                 \cr
          \emph{$CemaNeigeLayers[[iLayer]]$Melt         }   \tab [numeric] series of actual snow melt [mm]                    \cr
          \emph{$CemaNeigeLayers[[iLayer]]$PliqAndMelt  }   \tab [numeric] series of liquid precip. + actual snow melt [mm]   \cr
+         \emph{$CemaNeigeLayers[[iLayer]]$Temp         }   \tab [numeric] series of air temperature [°C] \cr     
          \emph{$StateEnd}                                  \tab [numeric] states at the end of the run: CemaNeige states [mm & °C] \cr
          }                                                                                                     
          (refer to the provided references or to the package source code for further details on these model outputs)
diff --git a/man/plot.OutputsModel.Rd b/man/plot.OutputsModel.Rd
index 22e6268dca3553a9dac1201ae79f18710186bb5c..036b11194dfff05d272333ffad5cd8f8c08b6eaa 100644
--- a/man/plot.OutputsModel.Rd
+++ b/man/plot.OutputsModel.Rd
@@ -33,8 +33,8 @@ Function which creates a screen plot giving an overview of the model outputs
 \details{
 Dashboard of results including various graphs (depending on the model):\cr
   (1) time series of total precipitation\cr
-  (2) time series of temperature (plotted only if CemaNeige ise used)\cr
-  (3) time series of snow pack (plotted only if CemaNeige ise used)\cr
+  (2) time series of temperature (plotted only if CemaNeige is used)\cr
+  (3) time series of snow pack (plotted only if CemaNeige is used)\cr
   (4) time series of simulated flows (and observed flows if provided)\cr
   (5) interannual median monthly simulated flow (and observed flows if provided)\cr
   (6) correlation plot between simulated and observed flows (if observed flows provided)\cr