diff --git a/Data/LHA.lhs b/Data/LHA.lhs
--- a/Data/LHA.lhs
+++ b/Data/LHA.lhs
@@ -134,3 +134,17 @@
 >   | DocumentationOnly     -- ^ Corresponds to status code +3.
 >   | IncomingBeam          -- ^ Corresponds to status code -9.
 
+> statusToInt Incoming = (-1)
+> statusToInt OutgoingFinal = (1)
+> statusToInt IntermediateSpaceLike = (-2)
+> statusToInt IntermediateResonance = (2)
+> statusToInt DocumentationOnly = (3)
+> statusToInt IncomingBeam = (-9)
+
+> statusFromInt (-1) = Incoming
+> statusFromInt (1) = OutgoingFinal
+> statusFromInt (-2) = IntermediateSpaceLike
+> statusFromInt (2) = IntermediateResonance
+> statusFromInt (3) = DocumentationOnly
+> statusFromInt (-9) = IncomingBeam
+
diff --git a/lha.cabal b/lha.cabal
--- a/lha.cabal
+++ b/lha.cabal
@@ -1,5 +1,5 @@
 Name:                lha
-Version:             0.1
+Version:             0.1.1
 Synopsis:            Data structures for the Les Houches Accord
 Description:         This package provides data structures for HEP events, as outlined by the Les Houches Accord (hep-ph/0109068v1)
 Homepage:            https://github.com/bytbox/lha.hs
