This release contains updates to the RouteGroup API:
Middleware are now mounted with the .Before
method on the group object rather than being passed in to the constructor
New for this release is the ability to add Afterware to a RouteGroup usingthe .After
method.
These can be chained such as vk.Group("/").Before(someMiddleware).After(someAfterware)