From 84c2c3a7154fc0e31d95a10b3a04d86c9d2a6220 Mon Sep 17 00:00:00 2001 From: Jun Aruga Date: Sat, 18 Nov 2017 23:23:29 +0100 Subject: [PATCH] Update History and README Supported platforms. (#205) --- History.md | 18 ++++++++++++++++-- README.md | 9 +++++++++ 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/History.md b/History.md index 63f74d29..8cd0992c 100644 --- a/History.md +++ b/History.md @@ -1,5 +1,19 @@ -## vNext / 2017-xx-xx - * Remove new line from basic auth. (Felix Kleinschmidt #185, closes #64) +## 0.8.0 / 2017-xx-xx + +* Minor enhancements + * Add a required_ruby_version of >= 2.2.2, similar to rack 2.0.1. + (Samuel Giddins #194) + * Remove new line from basic auth. (Felix Kleinschmidt #185) + * Rubocop fixes (Per Lundberg #196) + * Add how to install rack-test from github to README. (Jun Aruga #189) + * Update CodeClimate badges (Toshimaru #195) + * Add the ability to create Test::UploadedFile instances without + the file system (Adam Milligan #149) + * Add custom_request, remove duplication (Johannes Barre #184) + * README.md: Added note about how to post JSON (Per Lundberg #198) + * README.md: Added version badge (Per Lundberg #199) +* Bug fixes + * Bugfix for Cookies with multiple paths (Kyle Welsby #197) ## 0.7.0 / 2017-07-10 diff --git a/README.md b/README.md index 37f43756..0a12908f 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,15 @@ to build on. * Set request headers to be used by all subsequent requests * Small footprint. Approximately 200 LOC +## Supported platforms + +* 2.2.2+ +* 2.3 +* 2.4 +* JRuby 9.1.+ + +If you are using Ruby 1.8, 1.9 or JRuby 1.7, use rack-test 0.6.3. + ## Examples (The examples use `Test::Unit` but it's equally possible to use `rack-test` with other testing frameworks like `rspec`.)