File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Gmail Gem Changelog
22
3+ ## 0.7.1 - 2018-07-19
4+
5+ * Fix issue related to Net::IMAP.format_date change (@mnohai-mdsol )
6+
37## 0.7.0 - 2018-07-19
48
59* Add coveralls.io code coverage (@bootstraponline )
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def fetch_uids(*args)
3434
3535 opts [ :after ] and search . concat [ 'SINCE' , Net ::IMAP . format_date ( opts [ :after ] ) ]
3636 opts [ :before ] and search . concat [ 'BEFORE' , Net ::IMAP . format_date ( opts [ :before ] ) ]
37- opts [ :on ] and search . concat [ 'ON' , opts [ :on ] . to_imap_date ]
37+ opts [ :on ] and search . concat [ 'ON' , Net :: IMAP . format_date ( opts [ :on ] ) ]
3838 opts [ :from ] and search . concat [ 'FROM' , opts [ :from ] ]
3939 opts [ :to ] and search . concat [ 'TO' , opts [ :to ] ]
4040 opts [ :subject ] and search . concat [ 'SUBJECT' , opts [ :subject ] ]
Original file line number Diff line number Diff line change 11module Gmail
2- VERSION = "0.7.0 " . freeze
2+ VERSION = "0.7.1 " . freeze
33end
You can’t perform that action at this time.
0 commit comments