From aa7b72072811de61961156f28b602d2314530f88 Mon Sep 17 00:00:00 2001 From: geemus Date: Sun, 18 Mar 2012 14:34:30 -0500 Subject: [PATCH] Release 0.12.0 --- changelog.txt | 6 ++++++ excon.gemspec | 5 +++-- lib/excon/constants.rb | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/changelog.txt b/changelog.txt index 6bf13c03..06a3eeda 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,9 @@ +0.12.0 03/18/12 +=============== + +* use params to set ssl (so each connection could differ) +* bundle a default cert + 0.11.0 03/15/12 =============== diff --git a/excon.gemspec b/excon.gemspec index 279de158..b7e1f134 100644 --- a/excon.gemspec +++ b/excon.gemspec @@ -13,8 +13,8 @@ Gem::Specification.new do |s| ## If your rubyforge_project name is different, then edit it and comment out ## the sub! line in the Rakefile s.name = 'excon' - s.version = '0.11.0' - s.date = '2012-03-15' + s.version = '0.12.0' + s.date = '2012-03-18' s.rubyforge_project = 'excon' ## Make sure your summary is short. The description may be as long @@ -88,6 +88,7 @@ Gem::Specification.new do |s| benchmarks/strip_newline.rb benchmarks/vs_stdlib.rb changelog.txt + data/cacert.pem excon.gemspec lib/excon.rb lib/excon/connection.rb diff --git a/lib/excon/constants.rb b/lib/excon/constants.rb index d4d3cc23..8a661c5d 100644 --- a/lib/excon/constants.rb +++ b/lib/excon/constants.rb @@ -1,6 +1,6 @@ module Excon unless const_defined?(:VERSION) - VERSION = '0.11.0' + VERSION = '0.12.0' end unless const_defined?(:CHUNK_SIZE)