CHANGES.mdown in mango-0.5.0.beta5 vs CHANGES.mdown in mango-0.5.0

- old
+ new

@@ -1,28 +1,29 @@ -Mango release 0.5.0.beta5 (October 29, 2010) -============================================ +Mango release 0.5.0 (October 31, 2010) +====================================== ### Features * Mango has been split into two pieces! 1. A web framework, distributed as a Ruby gem, that is completely abstracted away from application code. 2. A `mango` command-line tool that generates a [demo Mango application](http://mango-fireworks.heroku.com/). * Mango now supports theme-switching! * For example, add `class Mango::Application; set :theme, "theme_name"; end` to your application's config.ru. * As a result of the new command-line application generator, all embedded application code has been removed. - * Now routes like `GET /images/` return a 200 response if the `themes/default/public/images/index.html` file is exists. + * Now routes like `GET /images/` return a 200 response as long as `themes/default/public/images/index.html` exists. ### Dependencies * Added [RubyGems](https://rubygems.org/) 1.3.7 - * Updated [Ruby](http://www.ruby-lang.org/) to 1.9.1 or 1.9.2 + * Updated [Ruby](http://www.ruby-lang.org/) to 1.9.2 * Updated [Bundler](http://gembundler.com/) to 1.0.3 + * Updated [Sinatra](http://www.sinatrarb.com/) to 1.1.0 * Updated [Haml](http://haml-lang.com/) to 3.0.22 * Updated [Sass](http://sass-lang.com/) to 3.0.22 (bundled with Haml) * Updated [BlueCloth](http://deveiate.org/projects/BlueCloth) to 2.0.9 * Updated [Rack::Test](http://github.com/brynary/rack-test) to 0.5.6 * Updated [RSpec](http://rspec.info/) to 2.0.1 - * Updated [YARD](http://yardoc.org/) to 0.5.8 + * Updated [YARD](http://yardoc.org/) to 0.6.1 * Updated [YARD::Sinatra](http://github.com/rkh/yard-sinatra) to 0.5.1 ### Bugs * The NOT_FOUND handler no longer renders the 404 template within a layout template.