0.39.8

(fix): The generated enum examples now reference the value of the enum directly instead of using the enum itself.

Before

1{
2 "genre": Imdb.Genre.Humor,
3}

After

1{
2 "genre": "humor"
3}