Skip to content

Commit e4e6c60

Browse files
committed
Release 0.3.3
1 parent 777da3b commit e4e6c60

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ task :release => :build do
9292
puts "You must be on the master branch to release!"
9393
exit!
9494
end
95-
sh "sudo gem install pkg/#{name}-#{version}.gem"
95+
sh "gem install pkg/#{name}-#{version}.gem"
9696
sh "git commit --allow-empty -a -m 'Release #{version}'"
9797
sh "git tag v#{version}"
9898
sh "git push origin master"

excon.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Gem::Specification.new do |s|
1313
## If your rubyforge_project name is different, then edit it and comment out
1414
## the sub! line in the Rakefile
1515
s.name = 'excon'
16-
s.version = '0.3.2'
17-
s.date = '2010-12-09'
16+
s.version = '0.3.3'
17+
s.date = '2010-12-10'
1818
s.rubyforge_project = 'excon'
1919

2020
## Make sure your summary is short. The description may be as long

lib/excon.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
module Excon
1414

1515
unless const_defined?(:VERSION)
16-
VERSION = '0.3.2'
16+
VERSION = '0.3.3'
1717
end
1818

1919
unless const_defined?(:CHUNK_SIZE)

0 commit comments

Comments
 (0)