diff --git a/proto-lens.cabal b/proto-lens.cabal
--- a/proto-lens.cabal
+++ b/proto-lens.cabal
@@ -1,5 +1,5 @@
 name:                proto-lens
-version:             0.1.0.1
+version:             0.1.0.2
 synopsis:            A lens-based implementation of protocol buffers in Haskell.
 description:
   The proto-lens library provides to protocol buffers using modern
diff --git a/src/Data/ProtoLens/TextFormat.hs b/src/Data/ProtoLens/TextFormat.hs
--- a/src/Data/ProtoLens/TextFormat.hs
+++ b/src/Data/ProtoLens/TextFormat.hs
@@ -88,8 +88,7 @@
 pprintFieldValue :: String -> FieldTypeDescriptor value -> value -> Doc
 pprintFieldValue name MessageField m
     = sep [text name <+> lbrace, nest 2 (pprintMessage m), rbrace]
--- TODO: make this output the enum value name by default
-pprintFieldValue name EnumField x = primField name $ fromEnum x
+pprintFieldValue name EnumField x = text name <> colon <+> text (showEnum x)
 pprintFieldValue name Int32Field x = primField name x
 pprintFieldValue name Int64Field x = primField name x
 pprintFieldValue name UInt32Field x = primField name x
