Skip to content

Commit

Permalink
Added missing 0.8.3 commit
Browse files Browse the repository at this point in the history
Fix #224. Thanks for noticing!
  • Loading branch information
perlun committed Mar 13, 2018
1 parent 5b4bcb1 commit 222bd65
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
11 changes: 11 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.8.3 / 2018-02-27

* Bug fixes:
* Do not set Content-Type if params are explicitly set to nil
(Bartek Bułat #212). Fixes #200.
* Fix `UploadedFile#new` regression
(Per Lundberg #215)

* Minor enhancements
* [CI] Test against Ruby 2.5 (Nicolas Leger #217)

## 0.8.2 / 2017-11-21

* Bug fixes:
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class HomepageTest < Test::Unit::TestCase
assert last_response.ok?
assert_equal last_response.body, 'All responses are OK'
end

def post_with_json
# No assertion in this, we just demonstrate how you can post a JSON-encoded string.
# By default, Rack::Test will use HTTP form encoding if you pass in a Hash as the
Expand Down Expand Up @@ -134,6 +134,7 @@ Contributions are welcome. Please make sure to:

## Releasing

* Ensure History.txt is up-to-date
* Ensure `History.md` is up-to-date
* Bump VERSION in lib/rack/test/version.rb
* bundle exec thor :release
* Updated the [GitHub releases page](https://github.com/rack-test/rack-test/releases)
2 changes: 1 addition & 1 deletion lib/rack/test/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Rack
module Test
VERSION = '0.8.2'.freeze
VERSION = '0.8.3'.freeze
end
end

0 comments on commit 222bd65

Please sign in to comment.