version bump to v1.0.8

This commit is contained in:
Mike Dalessio 2024-12-05 17:30:16 -05:00
parent e4e66bdf0a
commit 467b84fedf
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.8 (2024-12-05)
- `Cookie#expires=` accepts `DateTime` objects. (#52) @luke-hill @flavorjones
## 1.0.7 (2024-06-06)
- Explicitly require "cgi" to avoid `NameError` in some applications. (#50 by @flavorjones)

View file

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