Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ruby upgrade fix #279

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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