Skip to content

v0.11.0

Compare
Choose a tag to compare
@sdogruyol sdogruyol released this 19 Mar 13:20
· 489 commits to master since this release

This is a major release with some breaking changes.

  • _(breaking change)_ Kemal no longer runs at startup. You need to _explicity_ run it with Kemal.run.

Example:

require "kemal"

get "/" do 
  "Hello from Kemal."
end

Kemal.run