From f77f89f560e948c5e556bc26b254028b5be45562 Mon Sep 17 00:00:00 2001 From: Calvin Yu Date: Sun, 24 Mar 2019 22:07:46 -0400 Subject: [PATCH] Version 1.0.3 --- CHANGELOG.md | 5 +++++ lib/rack/cors/version.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 422a3f3..04c5bf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log All notable changes to this project will be documented in this file. +## 1.0.3 - 2019-03-24 +### Changed +- Don't send 'Content-Type' header with pre-flight requests +- Allow ruby array for vary header config + ## 1.0.2 - 2017-10-22 ### Fixed - Automatically allow simple headers when headers are set diff --git a/lib/rack/cors/version.rb b/lib/rack/cors/version.rb index b3ada63..5eef48d 100644 --- a/lib/rack/cors/version.rb +++ b/lib/rack/cors/version.rb @@ -1,5 +1,5 @@ module Rack class Cors - VERSION = "1.0.2" + VERSION = "1.0.3" end end