diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e310d2..b89f1c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.0.7 (2024-06-06) + +- Explicitly require "cgi" to avoid `NameError` in some applications. (#50 by @flavorjones) + + ## 1.0.6 (2024-06-01) - Fix error formatting bug in HTTP::CookieJar::AbstractStore (#42 by @andrelaszlo) diff --git a/lib/http/cookie/version.rb b/lib/http/cookie/version.rb index 237b94f..3f83ed8 100644 --- a/lib/http/cookie/version.rb +++ b/lib/http/cookie/version.rb @@ -1,5 +1,5 @@ module HTTP class Cookie - VERSION = "1.0.6" + VERSION = "1.0.7" end end