Skip to content

Commit 5b8bbff

Browse files
committed
Preparing for release, 0.5.0.
1 parent f4d4331 commit 5b8bbff

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

CHANGELOG.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Next Release
2-
============
1+
0.5.0 (6/14/2013)
2+
=================
33

44
#### Features
55

@@ -24,7 +24,6 @@ Next Release
2424
* [#417](https://github.com/intridea/grape/issues/417): Fix: Rails 4 does not rewind input, causes POSTed data to be empty - [@dblock](https://github.com/dblock).
2525
* [#423](https://github.com/intridea/grape/pull/423): Fix: `Grape::Endpoint#declared` now correctly handles nested params (ie. declared with `group`) - [@jbarreneche](https://github.com/jbarreneche).
2626
* [#427](https://github.com/intridea/grape/issues/427): Fix: `declared(params)` breaks when `params` contains array - [@timhabermaas](https://github.com/timhabermaas)
27-
* Your contribution here.
2827

2928
0.4.1 (4/1/2013)
3029
================

README.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ content negotiation, versioning and much more.
1010

1111
[![Build Status](https://travis-ci.org/intridea/grape.png?branch=master)](http://travis-ci.org/intridea/grape) [![Code Climate](https://codeclimate.com/github/intridea/grape.png)](https://codeclimate.com/github/intridea/grape)
1212

13-
## Stable Release
14-
15-
You're reading the documentation for the next release of Grape, which should be 0.4.2.
16-
The current stable release is [0.4.1](https://github.com/intridea/grape/blob/v0.4.1/README.md).
17-
1813
## Project Resources
1914

2015
* Need help? [Grape Google Group](http://groups.google.com/group/ruby-grape)
@@ -890,7 +885,7 @@ end
890885

891886
Grape supports CORS via [Rack::CORS](https://github.com/cyu/rack-cors), part of the
892887
[rack-cors](https://github.com/cyu/rack-cors) gem. Add `rack-cors` to your `Gemfile`,
893-
then use the middleware in your config.ru file.
888+
then use the middleware in your config.ru file.
894889

895890
```ruby
896891
require 'rack/cors'

lib/grape/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Grape
2-
VERSION = '0.4.2'
2+
VERSION = '0.5.0'
33
end

0 commit comments

Comments
 (0)