Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Gmail Gem Changelog

## 0.7.1 - 2018-07-19
## 0.7.2 - 2024-01-18

* Fix issue related to Net::IMAP.format_date change (@mnohai-mdsol)
* Fix issue related to Ruby 3.2 - String#untaint was deprecated

## 0.7.0 - 2018-07-19

Expand Down
2 changes: 1 addition & 1 deletion lib/gmail/imap_extensions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def x_gm_label_list
if flag.empty?
x
else
flag.first.first.capitalize.untaint.intern
flag.first.first.capitalize.intern
end
end
else
Expand Down
2 changes: 1 addition & 1 deletion lib/gmail/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Gmail
VERSION = "0.7.1".freeze
VERSION = "0.7.2".freeze
end