Commit e66116dc37379b6bc8f21bd749a81b00a19ff6ee
Prepare for the 2.0.3 release.
Coda Hale committed on 5/8/2008, 12:35:40 AMParent: 202011417d9cd16f989ff970305cf32d00456ac0
Files changed
CHANGELOG | changed |
Rakefile | changed |
CHANGELOG | ||
---|---|---|
@@ -14,8 +14,8 @@ | ||
14 | 14 | 2.0.2 Jun 06 2007 |
15 | 15 | - Fixed example code in the README [Winson] |
16 | 16 | - Fixed Solaris compatibility [Jeremy LaTrasse, Twitter crew] |
17 | 17 | |
18 | -HEAD | |
18 | +2.0.3 May 07 2008 | |
19 | 19 | - Made exception classes descend from StandardError, not Exception [Dan42] |
20 | 20 | - Changed BCrypt::Engine.hash to BCrypt::Engine.hash_secret to avoid Merb |
21 | 21 | sorting issues. [Lee Pope] |
Rakefile | ||
---|---|---|
@@ -6,9 +6,9 @@ | ||
6 | 6 | require 'rake/rdoctask' |
7 | 7 | require "benchmark" |
8 | 8 | |
9 | 9 | PKG_NAME = "bcrypt-ruby" |
10 | -PKG_VERSION = "2.0.2" | |
10 | +PKG_VERSION = "2.0.3" | |
11 | 11 | PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" |
12 | 12 | PKG_FILES = FileList[ |
13 | 13 | '[A-Z]*', |
14 | 14 | 'lib/**/*.rb', |
@@ -71,10 +71,9 @@ | ||
71 | 71 | s.extra_rdoc_files = rd.rdoc_files.to_a |
72 | 72 | |
73 | 73 | s.extensions = FileList["ext/extconf.rb"].to_a |
74 | 74 | |
75 | - s.autorequire = 'bcrypt' | |
76 | - s.author = ["Coda Hale"] | |
75 | + s.authors = ["Coda Hale"] | |
77 | 76 | s.email = "coda.hale@gmail.com" |
78 | 77 | s.homepage = "http://bcrypt-ruby.rubyforge.org" |
79 | 78 | s.rubyforge_project = "bcrypt-ruby" |
80 | 79 | end |
Built with git-ssb-web