diff --git a/ViennaRNAParser.cabal b/ViennaRNAParser.cabal
--- a/ViennaRNAParser.cabal
+++ b/ViennaRNAParser.cabal
@@ -5,7 +5,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             1.2.0
+version:             1.2.1
 synopsis:            Libary for parsing ViennaRNA package output
 description:         Currently contains parsers and datatypes for: RNAalifold, RNAdistance, RNAcofold, RNAfold, RNAplex, RNAup, RNAz.
 		     .
@@ -30,8 +30,8 @@
 
 source-repository this
   type:     git
-  location: https://github.com/eggzilla/ViennaRNAParser/tree/1.2.0
-  tag:      1.2.0
+  location: https://github.com/eggzilla/ViennaRNAParser/tree/1.2.1
+  tag:      1.2.1
 
 library
   -- Modules exported by the library.
diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,4 +1,6 @@
 -*-change-log-*-
+1.2.1 Florian Eggenhofer <florian.eggenhofer@univie.ac.at> 3. July 2015
+        * Included parsing of warning field in RNAz output
 1.2.0 Florian Eggenhofer <florian.eggenhofer@univie.ac.at> 1. July 2015
 	* Added Hspec test-suite
 	* Added RNAcofold parser
diff --git a/src/Bio/RNAzParser.hs b/src/Bio/RNAzParser.hs
--- a/src/Bio/RNAzParser.hs
+++ b/src/Bio/RNAzParser.hs
@@ -56,6 +56,8 @@
   _svmDecisionValue <-  parseRNAzDoubleField "SVM decision value:"
   _svmRNAClassProbability <- parseRNAzDoubleField "SVM RNA-class probability:"
   _prediction <- parseRNAzStringField "Prediction:"
+  optional (try (string " WARNING: Mean z-score out of range."))
+  optional (try newline)
   newline
   many1 (char '#') 
   newline
