Skip to content

Commit

Permalink
Version bump to 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mikel committed Jan 23, 2010
1 parent 89b9672 commit 7623919
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rdoc
@@ -1,3 +1,11 @@
== Sat Jan 23 05:32:53 UTC 2010 Mikel Lindsaar <raasdnil@gmail.com>

* Version bump to 2.0.3
* Made body.sort_parts! recursive, to do the entire body
* Added ability to use << on the results returned by the various address fields, ie, mail.to << 'new@address' now works
* Message now adds multipart/mixed as the content type if nothing is set and there are parts to the message
* Added #display_names and #addrs to all address fields. #addrs returns the actual Mail::Address object for each address in the field.

== Thu Jan 21 05:27:17 UTC 2010 Mikel Lindsaar <raasdnil@gmail.com> == Thu Jan 21 05:27:17 UTC 2010 Mikel Lindsaar <raasdnil@gmail.com>


* Version bump to 2.0.2 * Version bump to 2.0.2
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -12,7 +12,7 @@ require 'bundler'


spec = Gem::Specification.new do |s| spec = Gem::Specification.new do |s|
s.name = "mail" s.name = "mail"
s.version = "2.0.2" s.version = "2.0.3"
s.author = "Mike Lindsaar" s.author = "Mike Lindsaar"
s.email = "raasdnil@gmail.com" s.email = "raasdnil@gmail.com"
s.homepage = "http://github.com/mikel/mail" s.homepage = "http://github.com/mikel/mail"
Expand Down
2 changes: 1 addition & 1 deletion lib/mail/version.rb
Expand Up @@ -3,7 +3,7 @@ module Mail
module VERSION module VERSION
MAJOR = 2 MAJOR = 2
MINOR = 0 MINOR = 0
TINY = 2 TINY = 3


STRING = [MAJOR, MINOR, TINY].join('.') STRING = [MAJOR, MINOR, TINY].join('.')
end end
Expand Down

0 comments on commit 7623919

Please sign in to comment.