CHANGELOG.md in lotusrb-0.3.0 vs CHANGELOG.md in lotusrb-0.3.1
- old
+ new
@@ -1,7 +1,17 @@
# Lotus
A complete web framework for Ruby
+## v0.3.1 - 2015-05-15
+### Added
+- [Hiếu Nguyễn] Introduced application generator (eg. `bundle exec lotus generate app admin` creates `apps/admin`).
+- [Ngọc Nguyễn] Introduced model generator (eg. `bundle exec lotus generate model user` creates entity, repository and test files).
+- [Ngọc Nguyễn] Introduced `Lotus.env`, `Lotus.env?` for current environment introspection (eg. `Lotus.env?(:test)` or `Lotus.env?(:staging, :production)`)
+- [Miguel Molina] Skip view creation when an action is generated via `--skip-view` CLI arg.
+
+### Fixed
+- [Luca Guidi] Ensure routes to be loaded for unit tests
+
## v0.3.0 - 2015-03-23
### Added
- [Luca Guidi] Introduced action generator. Eg. `bundle exec lotus generate action web dashboard#index`
- [Alfonso Uceda Pompa] Allow to specify default coookies options in application configuration. Eg. `cookies true, { domain: 'lotusrb.org' }`
- [Tom Kadwill] Include `Lotus::Helpers` in views.