Navigation Menu

Skip to content

Commit

Permalink
Release 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
geemus committed May 31, 2012
1 parent 721b869 commit 2148416
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
9 changes: 9 additions & 0 deletions changelog.txt
@@ -1,3 +1,12 @@
0.14.0 05/31/12
===============

make stubs LIFO for ease of use/understanding, updated README to explain
simplify https proxy logic
add instrumentation for responses
add StandardInstrumentor (events got to stderr)
EXCON_STANDARD_INSTRUMENTOR=true sets StandardInstrumentor as default

0.13.3 04/05/12 0.13.3 04/05/12
=============== ===============


Expand Down
5 changes: 3 additions & 2 deletions excon.gemspec
Expand Up @@ -13,8 +13,8 @@ Gem::Specification.new do |s|
## If your rubyforge_project name is different, then edit it and comment out ## If your rubyforge_project name is different, then edit it and comment out
## the sub! line in the Rakefile ## the sub! line in the Rakefile
s.name = 'excon' s.name = 'excon'
s.version = '0.13.4' s.version = '0.14.0'
s.date = '2012-04-12' s.date = '2012-05-31'
s.rubyforge_project = 'excon' s.rubyforge_project = 'excon'


## Make sure your summary is short. The description may be as long ## Make sure your summary is short. The description may be as long
Expand Down Expand Up @@ -97,6 +97,7 @@ Gem::Specification.new do |s|
lib/excon/response.rb lib/excon/response.rb
lib/excon/socket.rb lib/excon/socket.rb
lib/excon/ssl_socket.rb lib/excon/ssl_socket.rb
lib/excon/standard_instrumentor.rb
tests/bad_tests.rb tests/bad_tests.rb
tests/basic_tests.rb tests/basic_tests.rb
tests/data/xs tests/data/xs
Expand Down
2 changes: 1 addition & 1 deletion lib/excon/constants.rb
@@ -1,6 +1,6 @@
module Excon module Excon
unless const_defined?(:VERSION) unless const_defined?(:VERSION)
VERSION = '0.13.4' VERSION = '0.14.0'
end end


unless const_defined?(:CHUNK_SIZE) unless const_defined?(:CHUNK_SIZE)
Expand Down

0 comments on commit 2148416

Please sign in to comment.