version bump to v1.0.7

This commit is contained in:
Mike Dalessio 2024-06-06 15:33:41 -04:00
parent 2561ccbd2b
commit 9efa5792ba
No known key found for this signature in database
2 changed files with 6 additions and 1 deletions

View file

@ -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)

View file

@ -1,5 +1,5 @@
module HTTP
class Cookie
VERSION = "1.0.6"
VERSION = "1.0.7"
end
end