Hi Chantal,
No there isn’t an easy way to add dates to the post widget: it needs a code snippet.
There is a new filter hook genesis_club_post_excerpt in Genesis Club List v1.6. You could use this to inject the post date (or modified date) before the excerpt.
Something like this:
add_filter('genesis_club_post_excerpt', function ($post_excerpt, $more link) {
return sprintf('<p>%1$s</p>%2$s', do_shortcode('[post_date]'), $post_excerpt) ;
}, 10, 2);
Regards
Russell